From 607f41fbc6be445a5bcab523c03983f5b0498e87 Mon Sep 17 00:00:00 2001 From: Vito Di Benedetto <55766483+vitodb@users.noreply.github.com> Date: Wed, 2 Aug 2023 12:38:25 -0500 Subject: [PATCH 1/7] Update ci.yaml --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index bce01c7b5..bf7e82bf4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -98,7 +98,7 @@ jobs: path: /tmp/*.log - name: Upload coverage to Codecov - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v3 with: flags: python-${{ matrix.python-version }} From cce13dc1297151da410fbfec2adc378c2bc5ce87 Mon Sep 17 00:00:00 2001 From: Vito Di Benedetto <55766483+vitodb@users.noreply.github.com> Date: Wed, 2 Aug 2023 13:03:14 -0500 Subject: [PATCH 2/7] Update ci.yaml --- .github/workflows/ci.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index bf7e82bf4..55db2dfdf 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -166,17 +166,17 @@ jobs: steps: - name: make date tag id: mkdatetag - run: echo "::set-output name=dtag::$(date +%Y%m%d_%H%M%S)" + run: echo "dtag=$(date +%Y%m%d_%H%M%S)" >> $GITHUB_OUTPUT - name: make ref tag case 1 id: mkreftag1 if: ${{ github.event.inputs.ref != '' }} - run: echo "::set-output name=reftag::${{github.event.inputs.ref}}" + run: echo "reftag=${{github.event.inputs.ref}}" >> $GITHUB_OUTPUT - name: make ref tag case 2 id: mkreftag2 if: ${{ github.event.inputs.ref == '' }} - run: echo "::set-output name=reftag::${GITHUB_BASE_REF:+PR}"$(awk -F"/" '{print $3}' <<< ${GITHUB_REF}) + run: echo "reftag=${GITHUB_BASE_REF:+PR}"$(awk -F"/" '{print $3}' <<< ${GITHUB_REF}) >> $GITHUB_OUTPUT - name: checkout code tree uses: actions/checkout@v3 @@ -205,17 +205,17 @@ jobs: steps: - name: make date tag id: mkdatetag - run: echo "::set-output name=dtag::$(date +%Y%m%d_%H%M%S)" + run: echo "dtag=$(date +%Y%m%d_%H%M%S)" >> $GITHUB_OUTPUT - name: make ref tag case 1 id: mkreftag1 if: ${{ github.event.inputs.ref != '' }} - run: echo "::set-output name=reftag::${{github.event.inputs.ref}}" + run: echo "reftag=${{github.event.inputs.ref}}" >> $GITHUB_OUTPUT - name: make ref tag case 2 id: mkreftag2 if: ${{ github.event.inputs.ref == '' }} - run: echo "::set-output name=reftag::${GITHUB_BASE_REF:+PR}"$(awk -F"/" '{print $3}' <<< ${GITHUB_REF}) + run: echo "reftag=${GITHUB_BASE_REF:+PR}"$(awk -F"/" '{print $3}' <<< ${GITHUB_REF}) >> $GITHUB_OUTPUT - name: checkout code tree uses: actions/checkout@v3 From 6d13b8606def90192082d9c4d1a30621925f8938 Mon Sep 17 00:00:00 2001 From: Vito Di Benedetto <55766483+vitodb@users.noreply.github.com> Date: Wed, 2 Aug 2023 13:32:48 -0500 Subject: [PATCH 3/7] Update codeql-analysis.yml --- .github/workflows/codeql-analysis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 69714d805..5cb11ba17 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -46,7 +46,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v1 + uses: github/codeql-action/init@v2 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -57,7 +57,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v1 + uses: github/codeql-action/autobuild@v2 # â„šī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -71,4 +71,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v2 From ecd0428a96cb601a66eba84f53a1a38c07715eb2 Mon Sep 17 00:00:00 2001 From: Vito Di Benedetto <55766483+vitodb@users.noreply.github.com> Date: Wed, 2 Aug 2023 13:36:13 -0500 Subject: [PATCH 4/7] Update codeql-analysis.yml --- .github/workflows/codeql-analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 5cb11ba17..330763125 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -42,7 +42,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL From 890021f9777d99dba2abe12b71e06d9b81da8fba Mon Sep 17 00:00:00 2001 From: Vito Di Benedetto <55766483+vitodb@users.noreply.github.com> Date: Wed, 2 Aug 2023 13:37:31 -0500 Subject: [PATCH 5/7] Update linters.yaml --- .github/workflows/linters.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linters.yaml b/.github/workflows/linters.yaml index dbc6cd557..c1d4bbace 100644 --- a/.github/workflows/linters.yaml +++ b/.github/workflows/linters.yaml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout code tree - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 @@ -71,7 +71,7 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout code tree - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 @@ -119,5 +119,5 @@ jobs: name: Run REUSE to check license compliance runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: fsfe/reuse-action@v1 From 2a980191fa196beffa81ca8418344cdfe5b723e4 Mon Sep 17 00:00:00 2001 From: Vito Di Benedetto <55766483+vitodb@users.noreply.github.com> Date: Wed, 2 Aug 2023 13:38:59 -0500 Subject: [PATCH 6/7] Update linters.yaml --- .github/workflows/linters.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linters.yaml b/.github/workflows/linters.yaml index c1d4bbace..199f4802e 100644 --- a/.github/workflows/linters.yaml +++ b/.github/workflows/linters.yaml @@ -23,13 +23,13 @@ jobs: with: fetch-depth: 0 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v3 with: python-version: "3.9" architecture: "x64" - name: Cache pip - uses: actions/cache@v2 + uses: actions/cache@v3 with: # This path is specific to Ubuntu path: ~/.cache/pip @@ -75,13 +75,13 @@ jobs: with: fetch-depth: 0 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v3 with: python-version: "3.9" architecture: "x64" - name: Cache pip - uses: actions/cache@v2 + uses: actions/cache@v3 with: # This path is specific to Ubuntu path: ~/.cache/pip From 06d2045e48921df17871e5ec36c060f14ec6baf4 Mon Sep 17 00:00:00 2001 From: Vito Di Benedetto <55766483+vitodb@users.noreply.github.com> Date: Wed, 2 Aug 2023 13:56:02 -0500 Subject: [PATCH 7/7] Update pytest.yaml --- .github/workflows/pytest.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 359c9a9e7..da66ea95c 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -21,7 +21,7 @@ jobs: steps: - name: checkout code tree - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 @@ -43,7 +43,7 @@ jobs: steps: - name: checkout code tree - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0