Skip to content

Commit 1af9e3e

Browse files
chore(deps): update actions/checkout action to v5
1 parent 687a5ca commit 1af9e3e

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/build-images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
script: |
3131
return context.repo.owner.toLowerCase()
3232
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434

3535
- name: Set nightly tag if commit was on main
3636
id: add-nightly-tag
@@ -102,7 +102,7 @@ jobs:
102102
tags: ${{ needs.build-info.outputs.tags }}
103103
repo-owner: ${{ needs.build-info.outputs.repo-owner }}
104104
steps:
105-
- uses: actions/checkout@v4
105+
- uses: actions/checkout@v5
106106

107107
- run: |
108108
echo "inputs:"

.github/workflows/cmake-exercise.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
cmake-exercise:
99
runs-on: ubuntu-24.04
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212

1313
- name: configure and build
1414
working-directory: topics/build_systems/code

.github/workflows/docker-exercise.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
docker-exercise:
99
runs-on: ubuntu-24.04
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212

1313
- name: build docker image
1414
working-directory: topics/docker/code/hostcontrold-solution

.github/workflows/document-compilation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
env:
1414
DISPLAY: ":99"
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717

1818
- name: "start xvfb as a workaround for drawio-desktop does not work without an X server"
1919
run: Xvfb :99 &

.github/workflows/java-exercise.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
java:
1212
- '21'
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515

1616
- uses: actions/setup-java@v4
1717
with:

.github/workflows/link-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
link-check:
1010
runs-on: ubuntu-24.04
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- uses: gaurav-nelson/github-action-markdown-link-check@v1
1414
with:
1515
use-quiet-mode: 'yes'

.github/workflows/pattern-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
java:
1212
- '21'
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515

1616
- uses: actions/setup-java@v4
1717
with:

0 commit comments

Comments
 (0)