Skip to content

Commit e407f0d

Browse files
Bump actions/checkout from 4 to 5 in the actions group (#281)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 75eb614 commit e407f0d

7 files changed

Lines changed: 43 additions & 43 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515

1616
- name: Install pnpm
1717
uses: pnpm/action-setup@v4

.github/workflows/check-dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616

1717
- name: Install pnpm
1818
uses: pnpm/action-setup@v4

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
release:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- uses: Quantco/ui-actions/version-metadata@v1
1717
id: version-metadata
1818
with:

.github/workflows/test-cache.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
matrix:
2222
os: [windows-latest, ubuntu-latest, macos-latest]
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- uses: ./
2626
with:
2727
environment-file: test/environment.yml
@@ -40,7 +40,7 @@ jobs:
4040
matrix:
4141
os: [windows-latest, ubuntu-latest, macos-latest]
4242
steps:
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v5
4444
- uses: ./
4545
with:
4646
environment-file: test/environment.yml
@@ -58,7 +58,7 @@ jobs:
5858
matrix:
5959
os: [windows-latest, ubuntu-latest, macos-latest]
6060
steps:
61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@v5
6262
- uses: ./
6363
with:
6464
environment-file: test/environment.yml
@@ -77,7 +77,7 @@ jobs:
7777
matrix:
7878
os: [windows-latest, ubuntu-latest, macos-latest]
7979
steps:
80-
- uses: actions/checkout@v4
80+
- uses: actions/checkout@v5
8181
- uses: ./
8282
with:
8383
environment-file: test/environment.yml
@@ -96,7 +96,7 @@ jobs:
9696
matrix:
9797
os: [windows-latest, ubuntu-latest, macos-latest]
9898
steps:
99-
- uses: actions/checkout@v4
99+
- uses: actions/checkout@v5
100100
- uses: ./
101101
with:
102102
environment-file: test/environment.yml
@@ -116,7 +116,7 @@ jobs:
116116
matrix:
117117
os: [windows-latest, ubuntu-latest, macos-latest]
118118
steps:
119-
- uses: actions/checkout@v4
119+
- uses: actions/checkout@v5
120120
- uses: ./
121121
with:
122122
environment-file: test/environment.yml
@@ -136,7 +136,7 @@ jobs:
136136
matrix:
137137
os: [windows-latest, ubuntu-latest, macos-latest]
138138
steps:
139-
- uses: actions/checkout@v4
139+
- uses: actions/checkout@v5
140140
- uses: ./
141141
with:
142142
environment-file: test/environment.yml
@@ -155,7 +155,7 @@ jobs:
155155
matrix:
156156
os: [windows-latest, ubuntu-latest, macos-latest]
157157
steps:
158-
- uses: actions/checkout@v4
158+
- uses: actions/checkout@v5
159159
- uses: ./
160160
with:
161161
# Since the environment is cached, there will be no downloaded packages in $MAMBA_ROOT_PREFIX/pkgs.

.github/workflows/test-download.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
ensure-download:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- run: |
1717
echo "exit 1" >> micromamba
1818
@@ -30,7 +30,7 @@ jobs:
3030
ensure-local-default:
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
- run: |
3535
curl -Ls https://github.com/mamba-org/micromamba-releases/releases/latest/download/micromamba-linux-64 > micromamba
3636
sudo cp micromamba /usr/bin/micromamba

.github/workflows/test-post-cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
binary-exists: '! '
4040
runs-on: ubuntu-latest
4141
steps:
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v5
4343
# This is a fork of webiny/action-post-run. If webiny/action-post-run is updated, this should be updated as well.
4444
- uses: lisanna-dettwyler/action-post-run@d053b9b43d788b87a409f6cdb3b6fc87c6c8a4fe
4545
with:

.github/workflows/test.yml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
no-environment-file:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- uses: ./
1616
with:
1717
environment-name: test
@@ -25,7 +25,7 @@ jobs:
2525
environment-file:
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
- uses: ./
3030
with:
3131
environment-file: 'test/environment.yml'
@@ -36,7 +36,7 @@ jobs:
3636
no-environment:
3737
runs-on: ubuntu-latest
3838
steps:
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
4040
- uses: ./
4141
with:
4242
micromamba-version: 2.0.2-0
@@ -47,7 +47,7 @@ jobs:
4747
micromamba-old-version-1:
4848
runs-on: ubuntu-latest
4949
steps:
50-
- uses: actions/checkout@v4
50+
- uses: actions/checkout@v5
5151
- uses: ./
5252
with:
5353
micromamba-version: 1.4.5-0
@@ -58,7 +58,7 @@ jobs:
5858
micromamba-old-version-2:
5959
runs-on: ubuntu-latest
6060
steps:
61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@v5
6262
- uses: ./
6363
with:
6464
micromamba-version: 1.2.0-1 # this will throw a warning
@@ -72,7 +72,7 @@ jobs:
7272
os: [ubuntu-latest, macos-latest]
7373
runs-on: ${{ matrix.os }}
7474
steps:
75-
- uses: actions/checkout@v4
75+
- uses: actions/checkout@v5
7676
- uses: ./
7777
with:
7878
init-shell: ''
@@ -90,7 +90,7 @@ jobs:
9090
os: [ubuntu-latest, macos-latest, windows-latest]
9191
runs-on: ${{ matrix.os }}
9292
steps:
93-
- uses: actions/checkout@v4
93+
- uses: actions/checkout@v5
9494
- uses: ./
9595
with:
9696
init-shell: bash
@@ -102,7 +102,7 @@ jobs:
102102
multiple-shell-init:
103103
runs-on: ubuntu-latest
104104
steps:
105-
- uses: actions/checkout@v4
105+
- uses: actions/checkout@v5
106106
- uses: ./
107107
with:
108108
init-shell: >-
@@ -120,7 +120,7 @@ jobs:
120120
cmd:
121121
runs-on: windows-latest
122122
steps:
123-
- uses: actions/checkout@v4
123+
- uses: actions/checkout@v5
124124
- uses: ./
125125
with:
126126
init-shell: cmd.exe
@@ -133,7 +133,7 @@ jobs:
133133
cmd-old-micromamba-version:
134134
runs-on: windows-latest
135135
steps:
136-
- uses: actions/checkout@v4
136+
- uses: actions/checkout@v5
137137
- uses: ./
138138
with:
139139
init-shell: cmd.exe
@@ -150,7 +150,7 @@ jobs:
150150
os: [ubuntu-latest, macos-latest, windows-latest]
151151
runs-on: ${{ matrix.os }}
152152
steps:
153-
- uses: actions/checkout@v4
153+
- uses: actions/checkout@v5
154154
- uses: ./
155155
with:
156156
init-shell: powershell
@@ -167,7 +167,7 @@ jobs:
167167
env-variable:
168168
runs-on: ubuntu-latest
169169
steps:
170-
- uses: actions/checkout@v4
170+
- uses: actions/checkout@v5
171171
- uses: ./
172172
with:
173173
environment-file: 'test/environment.yml'
@@ -179,7 +179,7 @@ jobs:
179179
custom-condarc:
180180
runs-on: ubuntu-latest
181181
steps:
182-
- uses: actions/checkout@v4
182+
- uses: actions/checkout@v5
183183
- uses: ./
184184
with:
185185
environment-file: 'test/environment.yml'
@@ -193,7 +193,7 @@ jobs:
193193
conda-lock:
194194
runs-on: ubuntu-latest
195195
steps:
196-
- uses: actions/checkout@v4
196+
- uses: actions/checkout@v5
197197
- uses: ./
198198
with:
199199
environment-file: 'test/conda-lock.yml'
@@ -205,7 +205,7 @@ jobs:
205205
comment-in-environment-file:
206206
runs-on: ubuntu-latest
207207
steps:
208-
- uses: actions/checkout@v4
208+
- uses: actions/checkout@v5
209209
- uses: ./
210210
with:
211211
environment-file: 'test/environment2.yml'
@@ -220,7 +220,7 @@ jobs:
220220
create-args-multiple-spaces-1:
221221
runs-on: ubuntu-latest
222222
steps:
223-
- uses: actions/checkout@v4
223+
- uses: actions/checkout@v5
224224
- uses: ./
225225
with:
226226
environment-name: test
@@ -233,7 +233,7 @@ jobs:
233233
create-args-multiple-spaces-2:
234234
runs-on: ubuntu-latest
235235
steps:
236-
- uses: actions/checkout@v4
236+
- uses: actions/checkout@v5
237237
- uses: ./
238238
with:
239239
environment-file: test/environment2.yml
@@ -246,7 +246,7 @@ jobs:
246246
output-environment-path-env-file:
247247
runs-on: ubuntu-latest
248248
steps:
249-
- uses: actions/checkout@v4
249+
- uses: actions/checkout@v5
250250
- uses: ./
251251
id: setup-micromamba
252252
with:
@@ -258,7 +258,7 @@ jobs:
258258
output-environment-path-env-name-overwrite:
259259
runs-on: ubuntu-latest
260260
steps:
261-
- uses: actions/checkout@v4
261+
- uses: actions/checkout@v5
262262
- uses: ./
263263
id: setup-micromamba
264264
with:
@@ -271,7 +271,7 @@ jobs:
271271
output-environment-path-custom-root-prefix:
272272
runs-on: ubuntu-latest
273273
steps:
274-
- uses: actions/checkout@v4
274+
- uses: actions/checkout@v5
275275
- uses: ./
276276
id: setup-micromamba
277277
with:
@@ -284,7 +284,7 @@ jobs:
284284
output-no-environment-path:
285285
runs-on: ubuntu-latest
286286
steps:
287-
- uses: actions/checkout@v4
287+
- uses: actions/checkout@v5
288288
- uses: ./
289289
id: setup-micromamba
290290
- run: |
@@ -293,7 +293,7 @@ jobs:
293293
check-micromamba-on-path:
294294
runs-on: ubuntu-latest
295295
steps:
296-
- uses: actions/checkout@v4
296+
- uses: actions/checkout@v5
297297
- uses: ./
298298
with:
299299
init-shell: none
@@ -312,7 +312,7 @@ jobs:
312312
use-micromamba-from-path:
313313
runs-on: ubuntu-latest
314314
steps:
315-
- uses: actions/checkout@v4
315+
- uses: actions/checkout@v5
316316
- name: Download micromamba
317317
run: |
318318
curl -Ls https://github.com/mamba-org/micromamba-releases/releases/latest/download/micromamba-linux-64 -o /usr/local/bin/micromamba
@@ -329,7 +329,7 @@ jobs:
329329
no-download-with-custom-path:
330330
runs-on: ubuntu-latest
331331
steps:
332-
- uses: actions/checkout@v4
332+
- uses: actions/checkout@v5
333333
- name: Download micromamba
334334
run: |
335335
mkdir -p "$HOME/not-on-path/bin"
@@ -348,7 +348,7 @@ jobs:
348348
incorrect-condarc:
349349
runs-on: ubuntu-latest
350350
steps:
351-
- uses: actions/checkout@v4
351+
- uses: actions/checkout@v5
352352
# this should produce a warning
353353
- uses: ./
354354
with:
@@ -360,7 +360,7 @@ jobs:
360360
correct-condarc:
361361
runs-on: ubuntu-latest
362362
steps:
363-
- uses: actions/checkout@v4
363+
- uses: actions/checkout@v5
364364
# this should produce a warning
365365
- uses: ./
366366
with:
@@ -375,7 +375,7 @@ jobs:
375375
# create-args-no-env-name:
376376
# runs-on: ubuntu-latest
377377
# steps:
378-
# - uses: actions/checkout@v4
378+
# - uses: actions/checkout@v5
379379
# - uses: ./
380380
# with:
381381
# create-args: >-
@@ -387,7 +387,7 @@ jobs:
387387
# incorrect-version:
388388
# runs-on: ubuntu-latest
389389
# steps:
390-
# - uses: actions/checkout@v4
390+
# - uses: actions/checkout@v5
391391
# - uses: ./
392392
# with:
393393
# micromamba-version: '1.2.3'
@@ -397,7 +397,7 @@ jobs:
397397
# incorrect-log-level:
398398
# runs-on: ubuntu-latest
399399
# steps:
400-
# - uses: actions/checkout@v4
400+
# - uses: actions/checkout@v5
401401
# - uses: ./
402402
# with:
403403
# log-level: foo

0 commit comments

Comments
 (0)