Skip to content
Open
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/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Select query suite
id: suite
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: actions/setup-python@v5
- uses: actions/setup-python@v7
with:
python-version: "3.13"
cache: pip
Expand All @@ -95,9 +95,9 @@ jobs:
timeout-minutes: 45
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: actions/setup-python@v5
- uses: actions/setup-python@v7
with:
python-version: "3.13"
cache: pip
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:

- name: Upload report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: pytest-full-report
path: |
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
outputs:
rust: ${{ steps.detect.outputs.rust }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
echo "::error::Detect Rust changes concluded '${{ needs.changes.result }}'. Nothing proves this ref leaves Rust untouched, so this gate fails closed."
exit 1

- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Set up Rust toolchain (stable + rustfmt)
if: needs.changes.outputs.rust == 'true'
Expand Down Expand Up @@ -191,11 +191,11 @@ jobs:
echo "::error::Detect Rust changes concluded '${{ needs.changes.result }}'. Nothing proves this ref leaves Rust untouched, so this gate fails closed."
exit 1

- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Cache cargo registry + build
if: needs.changes.outputs.rust == 'true'
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -237,10 +237,10 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Cache cargo registry + build
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: |
~/.cargo/registry
Expand All @@ -265,10 +265,10 @@ jobs:
timeout-minutes: 90
needs: clippy
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Cache cargo registry + build
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -297,10 +297,10 @@ jobs:
actions: read

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Cache cargo registry + build
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: |
~/.cargo/registry
Expand Down
Loading