Skip to content

Commit 584a993

Browse files
dependabot[bot]khaneliman
authored andcommitted
ci: bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 7b53322 commit 584a993

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
permission-contents: write
3131
permission-pull-requests: write
3232

33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
with:
3535
token: ${{ steps.app-token.outputs.token }}
3636
ref: ${{ github.event.pull_request.head.sha }}

.github/workflows/flakehub-publish-rolling.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
id-token: "write"
1212
contents: "read"
1313
steps:
14-
- uses: "actions/checkout@v4"
14+
- uses: "actions/checkout@v5"
1515
- uses: "DeterminateSystems/nix-installer-action@main"
1616
- uses: "DeterminateSystems/flakehub-push@main"
1717
with:

.github/workflows/pr-merged.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
# This ensures we get the latest scripts, even if the PR's base was outdated.
7272
- name: Checkout base branch
7373
id: checkout
74-
uses: actions/checkout@v4
74+
uses: actions/checkout@v5
7575
with:
7676
sparse-checkout: |
7777
flake/dev/diff-plugins.py

.github/workflows/tag-maintainers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
# Checkout the code from the base branch.
3737
# This is a security measure for `pull_request_target` to run trusted code.
3838
- name: Checkout code
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v5
4040
with:
4141
ref: ${{ github.base_ref }}
4242

.github/workflows/update-maintainers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
} >> "$GITHUB_OUTPUT"
6060
6161
- name: Checkout repository
62-
uses: actions/checkout@v4
62+
uses: actions/checkout@v5
6363
with:
6464
token: ${{ steps.app-token.outputs.token || github.token }}
6565

.github/workflows/update-other.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
branches: ${{ steps.list-branches.outputs.result }}
1919
steps:
2020
- name: Checkout version-info
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222
with:
2323
sparse-checkout: version-info.toml
2424
sparse-checkout-cone-mode: false

.github/workflows/update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
git config --global user.email "$email"
7676
7777
- name: Checkout repository
78-
uses: actions/checkout@v4
78+
uses: actions/checkout@v5
7979
with:
8080
token: ${{ steps.app-token.outputs.token }}
8181

.github/workflows/website.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout version-info
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727
with:
2828
sparse-checkout: version-info.toml
2929
sparse-checkout-cone-mode: false
@@ -91,7 +91,7 @@ jobs:
9191
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
9292

9393
- name: Checkout
94-
uses: actions/checkout@v4
94+
uses: actions/checkout@v5
9595
with:
9696
ref: ${{ matrix.ref }}
9797

0 commit comments

Comments
 (0)