File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ GitHub Actions-Syntax für Jobs
4747 jobs :
4848 my_job :
4949 steps :
50- - uses : actions/checkout@v3
50+ - uses : actions/checkout@v4
5151 - run : echo "Run my script here"
5252
5353 GitLab CI/CD-Syntax für Jobs
@@ -318,8 +318,8 @@ GitHub Actions-Syntax für Datenbanken und Service-Container
318318
319319 steps :
320320 - name : Python
321- uses : actions/checkout@v3
322- uses : actions/setup-python@v4
321+ uses : actions/checkout@v4
322+ uses : actions/setup-python@v5
323323 with :
324324 python-version : ' 3.10'
325325
@@ -355,7 +355,7 @@ Zuordnungen
355355+-----------------------------------------------+-----------------------------------------------+
356356| ``actions/upload-artifact@v2 `` | ``artifacts `` |
357357+-----------------------------------------------+-----------------------------------------------+
358- | ``actions/cache@v2 `` | ``cache `` |
358+ | ``actions/cache@v4 `` | ``cache `` |
359359+-----------------------------------------------+-----------------------------------------------+
360360| ``actions/download-artifact@v2 `` | ``dependencies `` |
361361+-----------------------------------------------+-----------------------------------------------+
Original file line number Diff line number Diff line change @@ -41,9 +41,9 @@ Beispiele für GitHub Actions
4141 pre-commit :
4242 runs-on : ubuntu-latest
4343 steps :
44- - uses : actions/checkout@v3
45- - uses : actions/setup-python@v3
46- - uses : actions/cache@v3
44+ - uses : actions/checkout@v4
45+ - uses : actions/setup-python@v5
46+ - uses : actions/cache@v4
4747 with :
4848 path : ~/.cache/pre-commit
4949 key : pre-commit|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
Original file line number Diff line number Diff line change @@ -432,7 +432,7 @@ Ihr könnt REUSE problemlos in euren Continuous Integration-Workflow integrieren
432432 test :
433433 runs-on : ubuntu-latest
434434 steps :
435- - uses : actions/checkout@v3
435+ - uses : actions/checkout@v4
436436 - name : REUSE Compliance Check
437437 uses : fsfe/reuse-action@v2
438438
You can’t perform that action at this time.
0 commit comments