Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pip-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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-*
Expand Down Expand Up @@ -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 }})
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
Expand All @@ -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-*
Expand All @@ -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 }})
Expand Down
Loading