diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index bce01c7b5..55db2dfdf 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 }} @@ -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 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 69714d805..330763125 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -42,11 +42,11 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 # 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 diff --git a/.github/workflows/linters.yaml b/.github/workflows/linters.yaml index dbc6cd557..199f4802e 100644 --- a/.github/workflows/linters.yaml +++ b/.github/workflows/linters.yaml @@ -19,17 +19,17 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout code tree - uses: actions/checkout@v2 + uses: actions/checkout@v3 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 @@ -71,17 +71,17 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout code tree - uses: actions/checkout@v2 + uses: actions/checkout@v3 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 @@ -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 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