Skip to content

Commit a53f3d6

Browse files
chore(deps): 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 bf0dbec commit a53f3d6

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.github/workflows/benchmark-master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: benchmark master
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111
with:
1212
fetch-depth: 0
1313
- uses: cachix/install-nix-action@v31

.github/workflows/benchmark-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: benchmark pr
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
fetch-depth: 0
2525
- uses: cachix/install-nix-action@v31

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131

3232
- name: Checking out the repository
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3434
with:
3535
fetch-depth: 0
3636

@@ -61,7 +61,7 @@ jobs:
6161
runs-on: windows-latest
6262
continue-on-error: true
6363
steps:
64-
- uses: actions/checkout@v4
64+
- uses: actions/checkout@v5
6565

6666
- uses: actions-rust-lang/setup-rust-toolchain@v1
6767

.github/workflows/release-artifacts.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
runs-on: ${{ matrix.os.runs-on }}
8383
needs: release-artifacts
8484
steps:
85-
- uses: actions/checkout@v4
85+
- uses: actions/checkout@v5
8686
- name: Log in to registry
8787
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
8888
- id: build-image
@@ -117,7 +117,7 @@ jobs:
117117
name: "Build MacOS Nickel binaries"
118118
runs-on: [self-hosted, macOS, ARM64]
119119
steps:
120-
- uses: actions/checkout@v4
120+
- uses: actions/checkout@v5
121121
with:
122122
ref: ${{ github.event_name == 'release' && '' || github.event.inputs.release_tag }}
123123
- name: Build binaries
@@ -140,7 +140,7 @@ jobs:
140140
name: "Build Windows Nickel binaries"
141141
runs-on: windows-latest
142142
steps:
143-
- uses: actions/checkout@v4
143+
- uses: actions/checkout@v5
144144
with:
145145
ref: ${{ github.event_name == 'release' && '' || github.event.inputs.release_tag }}
146146
- name: Build binaries

.github/workflows/release-python.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- runner: ubuntu-22.04
2828
target: aarch64
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
with:
3232
ref: ${{ github.event_name == 'release' && '' || github.event.inputs.release_tag }}
3333
- uses: actions/setup-python@v5
@@ -56,7 +56,7 @@ jobs:
5656
- runner: ubuntu-22.04
5757
target: aarch64
5858
steps:
59-
- uses: actions/checkout@v4
59+
- uses: actions/checkout@v5
6060
- uses: actions/setup-python@v5
6161
with:
6262
python-version: 3.x
@@ -81,7 +81,7 @@ jobs:
8181
- runner: windows-latest
8282
target: x64
8383
steps:
84-
- uses: actions/checkout@v4
84+
- uses: actions/checkout@v5
8585
with:
8686
ref: ${{ github.event_name == 'release' && '' || github.event.inputs.release_tag }}
8787
- uses: actions/setup-python@v5
@@ -110,7 +110,7 @@ jobs:
110110
- runner: macos-14
111111
target: aarch64
112112
steps:
113-
- uses: actions/checkout@v4
113+
- uses: actions/checkout@v5
114114
with:
115115
ref: ${{ github.event_name == 'release' && '' || github.event.inputs.release_tag }}
116116
- uses: actions/setup-python@v5
@@ -131,7 +131,7 @@ jobs:
131131
sdist:
132132
runs-on: ubuntu-latest
133133
steps:
134-
- uses: actions/checkout@v4
134+
- uses: actions/checkout@v5
135135
with:
136136
ref: ${{ github.event_name == 'release' && '' || github.event.inputs.release_tag }}
137137
- name: Build sdist

.github/workflows/update-flake-lock.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: Checkout repository
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
- name: Install Nix
1414
uses: cachix/install-nix-action@v31
1515
with:

0 commit comments

Comments
 (0)