Skip to content

Commit 7702d14

Browse files
dependabot[bot]khaneliman
authored andcommitted
ci: 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 3d6c1c8 commit 7702d14

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
with:
3232
app-id: ${{ vars.CI_APP_ID }}
3333
private-key: ${{ secrets.CI_APP_PRIVATE_KEY }}
34-
- uses: actions/checkout@v5
34+
- uses: actions/checkout@v6
3535
with:
3636
token: ${{ steps.app-token.outputs.token || secrets.GITHUB_TOKEN }}
3737
ref: ${{ github.event.pull_request.head.sha }}

.github/workflows/github_pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
os: [ubuntu-latest]
1313
runs-on: ${{ matrix.os }}
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- uses: cachix/install-nix-action@v31
1717
with:
1818
nix_path: nixpkgs=channel:nixos-unstable

.github/workflows/tag-maintainers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
app-id: ${{ vars.CI_APP_ID }}
2424
private-key: ${{ secrets.CI_APP_PRIVATE_KEY }}
2525
- name: Checkout code
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
with:
2828
ref: ${{ github.event.pull_request.base.sha }}
2929
- name: Get Nixpkgs revision from flake.lock

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
hm: ${{ steps.changes.outputs.hm }}
1616
tests: ${{ steps.changes.outputs.tests }}
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- uses: dorny/paths-filter@v3
2020
id: changes
2121
with:
@@ -47,7 +47,7 @@ jobs:
4747
os: [ubuntu-latest, macos-latest]
4848
runs-on: ${{ matrix.os }}
4949
steps:
50-
- uses: actions/checkout@v5
50+
- uses: actions/checkout@v6
5151
- name: Get Nixpkgs revision from flake.lock
5252
id: get-nixpkgs
5353
run: |

.github/workflows/update-flake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
3535
} >> "$GITHUB_OUTPUT"
3636
- name: Checkout repository
37-
uses: actions/checkout@v5
37+
uses: actions/checkout@v6
3838
with:
3939
ref: ${{ matrix.branch }}
4040
token: ${{ steps.app-token.outputs.token || secrets.GITHUB_TOKEN }}

.github/workflows/update-maintainers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
4949
} >> "$GITHUB_OUTPUT"
5050
- name: Checkout repository
51-
uses: actions/checkout@v5
51+
uses: actions/checkout@v6
5252
with:
5353
token: ${{ steps.app-token.outputs.token || github.token }}
5454
- name: Get Nixpkgs revision from flake.lock

.github/workflows/validate-maintainers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: github.repository_owner == 'nix-community'
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
- name: Get Nixpkgs revision from flake.lock
2020
id: get-nixpkgs
2121
run: |

0 commit comments

Comments
 (0)