Skip to content

Commit c72f3dc

Browse files
authored
Merge pull request #14638 from NixOS/dependabot/github_actions/actions/checkout-6
build(deps): bump actions/checkout from 5 to 6
2 parents d1470f7 + d8d75cf commit c72f3dc

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
app-id: ${{ vars.CI_APP_ID }}
2222
private-key: ${{ secrets.CI_APP_PRIVATE_KEY }}
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
with:
2525
ref: ${{ github.event.pull_request.head.sha }}
2626
# required to find all branches

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
eval:
2525
runs-on: ubuntu-24.04
2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828
with:
2929
fetch-depth: 0
3030
- uses: ./.github/actions/install-nix-action
@@ -40,7 +40,7 @@ jobs:
4040
name: pre-commit checks
4141
runs-on: ubuntu-24.04
4242
steps:
43-
- uses: actions/checkout@v5
43+
- uses: actions/checkout@v6
4444
- uses: ./.github/actions/install-nix-action
4545
with:
4646
dogfood: ${{ github.event_name == 'workflow_dispatch' && inputs.dogfood || github.event_name != 'workflow_dispatch' }}
@@ -87,7 +87,7 @@ jobs:
8787
runs-on: ${{ matrix.runs-on }}
8888
timeout-minutes: 60
8989
steps:
90-
- uses: actions/checkout@v5
90+
- uses: actions/checkout@v6
9191
with:
9292
fetch-depth: 0
9393
- uses: ./.github/actions/install-nix-action
@@ -162,7 +162,7 @@ jobs:
162162
name: installer test ${{ matrix.scenario }}
163163
runs-on: ${{ matrix.runs-on }}
164164
steps:
165-
- uses: actions/checkout@v5
165+
- uses: actions/checkout@v6
166166
- name: Download installer tarball
167167
uses: actions/download-artifact@v6
168168
with:
@@ -227,7 +227,7 @@ jobs:
227227
github.ref_name == 'master'
228228
runs-on: ubuntu-24.04
229229
steps:
230-
- uses: actions/checkout@v5
230+
- uses: actions/checkout@v6
231231
with:
232232
fetch-depth: 0
233233
- uses: ./.github/actions/install-nix-action
@@ -276,14 +276,14 @@ jobs:
276276
runs-on: ubuntu-24.04
277277
steps:
278278
- name: Checkout nix
279-
uses: actions/checkout@v5
279+
uses: actions/checkout@v6
280280
- name: Checkout flake-regressions
281-
uses: actions/checkout@v5
281+
uses: actions/checkout@v6
282282
with:
283283
repository: NixOS/flake-regressions
284284
path: flake-regressions
285285
- name: Checkout flake-regressions-data
286-
uses: actions/checkout@v5
286+
uses: actions/checkout@v6
287287
with:
288288
repository: NixOS/flake-regressions-data
289289
path: flake-regressions/tests
@@ -303,7 +303,7 @@ jobs:
303303
github.event_name == 'push' &&
304304
github.ref_name == 'master'
305305
steps:
306-
- uses: actions/checkout@v5
306+
- uses: actions/checkout@v6
307307
with:
308308
fetch-depth: 0
309309
- uses: ./.github/actions/install-nix-action

0 commit comments

Comments
 (0)