Skip to content

Commit 32c2668

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 0947052 commit 32c2668

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
if: |
1818
github.event.pull_request.merged == true && startsWith(github.event.label.name, 'backport-')
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
with:
2222
ref: ${{ github.event.pull_request.head.sha }}
2323
token: ${{ steps.app-token.outputs.token }}

.github/workflows/cachix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- nix
2222
- maximal
2323
steps:
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525
name: Checkout
2626

2727
- name: Install Nix

.github/workflows/check.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
if: "!contains(github.event.pull_request.title, '[skip ci]')"
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121

2222
- name: Install Nix
2323
uses: DeterminateSystems/nix-installer-action@main
@@ -31,7 +31,7 @@ jobs:
3131
if: "!contains(github.event.pull_request.title, '[skip ci]')"
3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535

3636
- name: Install Nix
3737
uses: DeterminateSystems/nix-installer-action@main
@@ -56,7 +56,7 @@ jobs:
5656
if: "!contains(github.event.pull_request.title, '[skip ci]')"
5757
steps:
5858
- name: Checkout
59-
uses: actions/checkout@v5
59+
uses: actions/checkout@v6
6060

6161
- name: Check for typos
6262
uses: crate-ci/typos@master
@@ -87,7 +87,7 @@ jobs:
8787
uses: DeterminateSystems/nix-installer-action@main
8888

8989
- name: Checkout
90-
uses: actions/checkout@v5
90+
uses: actions/checkout@v6
9191

9292
- name: Set default git branch (to reduce log spam)
9393
run: git config --global init.defaultBranch main
@@ -115,7 +115,7 @@ jobs:
115115
uses: DeterminateSystems/nix-installer-action@main
116116

117117
- name: Checkout
118-
uses: actions/checkout@v5
118+
uses: actions/checkout@v6
119119

120120
- name: Build linkcheck package
121121
run: nix build .#docs-linkcheck -Lv
@@ -126,7 +126,7 @@ jobs:
126126
if: "!contains(github.event.pull_request.title, '[skip ci]')"
127127
steps:
128128
- name: Checkout
129-
uses: actions/checkout@v5
129+
uses: actions/checkout@v6
130130
with:
131131
fetch-depth: 2 # slows down checkout, but we need to compare against the previous commit on push events
132132

.github/workflows/cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: "Checkout"
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818

1919
- name: "Delete old branches"
2020
uses: beatlabs/[email protected]

.github/workflows/docs-preview.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
uses: DeterminateSystems/nix-installer-action@main
2929

3030
- name: Checkout
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232

3333
- name: Set default git branch (to reduce log spam)
3434
run: git config --global init.defaultBranch main
@@ -127,7 +127,7 @@ jobs:
127127
runs-on: ubuntu-latest
128128
steps:
129129
- name: Checkout repository
130-
uses: actions/checkout@v5
130+
uses: actions/checkout@v6
131131

132132
- name: Delete preview for closed/merged PR
133133
run: |
@@ -164,7 +164,7 @@ jobs:
164164
runs-on: ubuntu-latest
165165
steps:
166166
- name: Checkout repository
167-
uses: actions/checkout@v5
167+
uses: actions/checkout@v6
168168

169169
- name: Double check preview directory deletion
170170
run: |

.github/workflows/manual.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
outputs:
2929
should_run: ${{ steps.should_run.outputs.should_run }}
3030
steps:
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
- name: print latest_commit
3333
run: echo ${{ github.sha }}
3434

@@ -43,7 +43,7 @@ jobs:
4343
if: ${{ needs.check_date.outputs.should_run != 'false' }}
4444
runs-on: ubuntu-latest
4545
steps:
46-
- uses: actions/checkout@v5
46+
- uses: actions/checkout@v6
4747
- uses: DeterminateSystems/nix-installer-action@main
4848
- run: |
4949
nix build .#docs -Lv

0 commit comments

Comments
 (0)