Commit 08127de 1 parent 8d04373 commit 08127de Copy full SHA for 08127de
File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ GitHub Actions syntax for jobs
43
43
jobs :
44
44
my_job :
45
45
steps :
46
- - uses : actions/checkout@v3
46
+ - uses : actions/checkout@v4
47
47
- run : echo "Run my script here"
48
48
49
49
GitLab CI/CD syntax for jobs
@@ -308,8 +308,8 @@ GitHub Actions syntax for databases and service containers
308
308
309
309
steps :
310
310
- name : Python
311
- uses : actions/checkout@v3
312
- uses : actions/setup-python@v4
311
+ uses : actions/checkout@v4
312
+ uses : actions/setup-python@v5
313
313
with :
314
314
python-version : ' 3.10'
315
315
@@ -344,7 +344,7 @@ Mapping
344
344
+-----------------------------------------------+-----------------------------------------------+
345
345
| ``actions/upload-artifact@v2 `` | ``artifacts `` |
346
346
+-----------------------------------------------+-----------------------------------------------+
347
- | ``actions/cache@v2 `` | ``cache `` |
347
+ | ``actions/cache@v4 `` | ``cache `` |
348
348
+-----------------------------------------------+-----------------------------------------------+
349
349
| ``actions/download-artifact@v2 `` | ``dependencies `` |
350
350
+-----------------------------------------------+-----------------------------------------------+
Original file line number Diff line number Diff line change @@ -39,9 +39,9 @@ Examples for GitHub Actions
39
39
pre-commit :
40
40
runs-on : ubuntu-latest
41
41
steps :
42
- - uses : actions/checkout@v3
43
- - uses : actions/setup-python@v3
44
- - uses : actions/cache@v3
42
+ - uses : actions/checkout@v4
43
+ - uses : actions/setup-python@v5
44
+ - uses : actions/cache@v4
45
45
with :
46
46
path : ~/.cache/pre-commit
47
47
key : pre-commit|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
Original file line number Diff line number Diff line change @@ -419,7 +419,7 @@ You can easily integrate REUSE into your continuous integration workflow:
419
419
test :
420
420
runs-on : ubuntu-latest
421
421
steps :
422
- - uses : actions/checkout@v3
422
+ - uses : actions/checkout@v4
423
423
- name : REUSE Compliance Check
424
424
uses : fsfe/reuse-action@v2
425
425
You can’t perform that action at this time.
0 commit comments