Skip to content

Commit f03ca4e

Browse files
Update actions/checkout action to v6
1 parent 1c4653f commit f03ca4e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: Run linting/pre-commit checks
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525
- uses: actions/setup-python@v6
2626
with:
2727
python-version: '3.10'
@@ -41,7 +41,7 @@ jobs:
4141
env:
4242
PLATFORM: ${{ matrix.platform }}
4343
steps:
44-
- uses: actions/checkout@v5
44+
- uses: actions/checkout@v6
4545
- name: Install the latest version of uv
4646
uses: astral-sh/setup-uv@v7
4747
with:
@@ -103,7 +103,7 @@ jobs:
103103
name: Upload coverage reports to Codecov
104104
steps:
105105
- name: Checkout
106-
uses: actions/checkout@v5
106+
uses: actions/checkout@v6
107107
- name: Download artifacts
108108
uses: actions/download-artifact@v4
109109
with:

.github/workflows/full_cluster_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
name: Upload coverage reports to Codecov
3535
steps:
3636
- name: Checkout
37-
uses: actions/checkout@v5
37+
uses: actions/checkout@v6
3838
- name: Download artifacts
3939
uses: actions/download-artifact@v4
4040
- name: Upload coverage reports to Codecov

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
environment: release
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- name: Install the latest version of uv
1919
uses: astral-sh/setup-uv@v7
2020
with:

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# that we don't have to go through 2FA on DRAC clusters.
3232
ssh -O check -oStrictHostKeyChecking=no ${{ inputs.cluster }}
3333

34-
- uses: actions/checkout@v5
34+
- uses: actions/checkout@v6
3535
- name: Install the latest version of uv
3636
uses: astral-sh/setup-uv@v7
3737
with:

0 commit comments

Comments
 (0)