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
2 changes: 1 addition & 1 deletion .github/workflows/build_n_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Setup Python environment
uses: actions/setup-python@v6
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pip-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
name: pip-audit python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
fi
cat audit-report-${{ matrix.python-version }}.md >> "$GITHUB_STEP_SUMMARY"
fi
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: audit-${{ matrix.python-version }}
retention-days: 2
Expand All @@ -83,8 +83,8 @@ jobs:
- name: Get analysis timestamp
id: timestamp
run: echo "timestamp=$(date -Is)" >> "$GITHUB_OUTPUT"
- uses: actions/checkout@v5
- uses: actions/download-artifact@v5
- uses: actions/checkout@v6
- uses: actions/download-artifact@v6
id: download
with:
pattern: audit-*
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 @@ -15,7 +15,7 @@ jobs:
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
name: Pre-commit python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 100
- uses: actions/setup-python@v6
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@v4
- uses: actions/upload-artifact@v5
with:
name: constraints-artifacts-${{ matrix.python-version }}
retention-days: 2
Expand All @@ -100,7 +100,7 @@ jobs:
python-version: [ "3.7" ]
name: Pre-commit python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 100
- uses: actions/setup-python@v6
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@v4
- uses: actions/upload-artifact@v5
with:
name: constraints-artifacts-${{ matrix.python-version }}
retention-days: 2
Expand All @@ -188,8 +188,8 @@ jobs:
- name: Get analysis timestamp
id: timestamp
run: echo "timestamp=$(date -Is)" >> "$GITHUB_OUTPUT"
- uses: actions/checkout@v5
- uses: actions/download-artifact@v5
- uses: actions/checkout@v6
- uses: actions/download-artifact@v6
id: download
with:
pattern: constraints-artifacts-*
Expand Down
Loading