Skip to content

Commit 2f0a4fe

Browse files
build(deps): bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 8f702b3 commit 2f0a4fe

12 files changed

+18
-18
lines changed

.github/workflows/_build-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
matrix:
2626
pkg-name: ${{ fromJSON(inputs.pkg-names) }}
2727
steps:
28-
- uses: actions/checkout@v5
28+
- uses: actions/checkout@v6
2929
- uses: actions/setup-python@v6
3030
with:
3131
python-version: "3.x"

.github/workflows/_legacy-checkpoints.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
outputs:
5656
pl-version: ${{ steps.decide-version.outputs.pl-version }}
5757
steps:
58-
- uses: actions/checkout@v5
58+
- uses: actions/checkout@v6
5959

6060
- name: Install uv and set Python version
6161
uses: astral-sh/setup-uv@v7
@@ -139,7 +139,7 @@ jobs:
139139
env:
140140
PL_VERSION: ${{ needs.create-legacy-ckpts.outputs.pl-version }}
141141
steps:
142-
- uses: actions/checkout@v5
142+
- uses: actions/checkout@v6
143143
with:
144144
ref: master
145145

.github/workflows/ci-pkg-install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
pkg-name: ["fabric", "pytorch", "lightning", "notset"]
4747
python-version: ["3.10", "3.11"]
4848
steps:
49-
- uses: actions/checkout@v5
49+
- uses: actions/checkout@v6
5050
- uses: actions/setup-python@v6
5151
with:
5252
python-version: ${{ matrix.python-version }}

.github/workflows/ci-tests-fabric.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
DISABLE_MPS: ${{ matrix.os == 'macOS-14' && '1' || '0' }}
6666
UV_TORCH_BACKEND: "cpu"
6767
steps:
68-
- uses: actions/checkout@v5
68+
- uses: actions/checkout@v6
6969

7070
- name: Install uv and set Python version
7171
uses: astral-sh/setup-uv@v7

.github/workflows/ci-tests-pytorch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
DISABLE_MPS: ${{ matrix.os == 'macOS-14' && '1' || '0' }}
7171
UV_TORCH_BACKEND: "cpu"
7272
steps:
73-
- uses: actions/checkout@v5
73+
- uses: actions/checkout@v6
7474

7575
- name: Install uv and set Python version
7676
uses: astral-sh/setup-uv@v7

.github/workflows/cleanup-caches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Check out code
12-
uses: actions/checkout@v5
12+
uses: actions/checkout@v6
1313

1414
- name: Cleanup
1515
run: |

.github/workflows/code-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
mypy:
2929
runs-on: ubuntu-22.04
3030
steps:
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232

3333
- name: Install uv and set Python version
3434
uses: astral-sh/setup-uv@v7

.github/workflows/docs-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
PIN_RELEASE_VERSIONS: 1
6464
ARTIFACT_DAYS: 0
6565
steps:
66-
- uses: actions/checkout@v5
66+
- uses: actions/checkout@v6
6767
with:
6868
ref: ${{ inputs.checkout }}
6969
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/docs-tutorials.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
docs-update:
1919
runs-on: ubuntu-22.04
2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
with:
2323
submodules: true
2424
fetch-depth: 0

.github/workflows/labeler-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
contents: read
2020

2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323

2424
- name: Parse issue form
2525
uses: stefanbuck/github-issue-parser@v3

0 commit comments

Comments
 (0)