Skip to content

Commit 8170646

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

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

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

Lines changed: 3 additions & 3 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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ 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
44+
- uses: actions/checkout@v4
45+
- uses: actions/setup-python@v5
4646
- uses: actions/cache@v3
4747
with:
4848
path: ~/.cache/pre-commit

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)