Skip to content

Commit 4e48659

Browse files
committed
⬆️ Update GitHub actions
1 parent 340910d commit 4e48659

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

docs/productive/git/advanced/gitlab/github-migration.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
+-----------------------------------------------+-----------------------------------------------+

docs/productive/git/advanced/hooks/ci.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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') }}

docs/productive/licensing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)