diff --git a/.github/workflows/pip-audit.yml b/.github/workflows/pip-audit.yml index d215389..fa67abc 100644 --- a/.github/workflows/pip-audit.yml +++ b/.github/workflows/pip-audit.yml @@ -64,7 +64,7 @@ jobs: fi cat audit-report-${{ matrix.python-version }}.md >> "$GITHUB_STEP_SUMMARY" fi - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: audit-${{ matrix.python-version }} retention-days: 2 @@ -84,7 +84,7 @@ jobs: id: timestamp run: echo "timestamp=$(date -Is)" >> "$GITHUB_OUTPUT" - uses: actions/checkout@v6 - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 id: download with: pattern: audit-* @@ -122,7 +122,7 @@ jobs: echo "skip=$skip" >> "$GITHUB_OUTPUT" - name: Create Pull Request id: cpr - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 if: steps.move.outputs.skip == 'false' with: title: Updated constraints due security reasons (triggered on ${{ steps.timestamp.outputs.timestamp }} by ${{ github.sha }}) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 37ff30c..e72684c 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -54,7 +54,7 @@ jobs: run: | pip install -r dev-requirements.txt -r mypy-requirements.txt -c constraints-${{ matrix.python-version }}.txt-relaxed - name: MyPy cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: '.mypy_cache/[0-9]*' key: mypy-${{ matrix.python-version }} @@ -87,7 +87,7 @@ jobs: - name: Print licences report if: ${{ always() }} run: echo "${{ steps.license_check_print_report.outputs.report }}" - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: constraints-artifacts-${{ matrix.python-version }} retention-days: 2 @@ -138,7 +138,7 @@ jobs: - run: | pip install -r dev-requirements.txt -r mypy-requirements.txt -c constraints-${{ matrix.python-version }}.txt-relaxed - name: MyPy cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: '.mypy_cache/[0-9]*' key: mypy-${{ matrix.python-version }} @@ -171,7 +171,7 @@ jobs: - name: Print licences report if: ${{ always() }} run: echo "${{ steps.license_check_print_report.outputs.report }}" - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: constraints-artifacts-${{ matrix.python-version }} retention-days: 2 @@ -189,7 +189,7 @@ jobs: id: timestamp run: echo "timestamp=$(date -Is)" >> "$GITHUB_OUTPUT" - uses: actions/checkout@v6 - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 id: download with: pattern: constraints-artifacts-* @@ -215,7 +215,7 @@ jobs: echo "skip=$skip" >> "$GITHUB_OUTPUT" - name: Create Pull Request id: cpr - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 if: steps.move.outputs.skip == 'false' with: title: Updated constraints (triggered on ${{ steps.timestamp.outputs.timestamp }} by ${{ github.sha }})