Skip to content

Commit f0262f7

Browse files
chore(deps): update github-actions to v5
1 parent 9b6602c commit f0262f7

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ jobs:
4141

4242
# Check out the current repository
4343
- name: Fetch Sources
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5
4545

4646
# Set up the Java environment for the next steps
4747
- name: Setup Java
48-
uses: actions/setup-java@v4
48+
uses: actions/setup-java@v5
4949
with:
5050
distribution: zulu
5151
java-version: 21
@@ -92,11 +92,11 @@ jobs:
9292

9393
# Check out the current repository
9494
- name: Fetch Sources
95-
uses: actions/checkout@v4
95+
uses: actions/checkout@v5
9696

9797
# Set up the Java environment for the next steps
9898
- name: Setup Java
99-
uses: actions/setup-java@v4
99+
uses: actions/setup-java@v5
100100
with:
101101
distribution: zulu
102102
java-version: 21
@@ -146,14 +146,14 @@ jobs:
146146

147147
# Check out the current repository
148148
- name: Fetch Sources
149-
uses: actions/checkout@v4
149+
uses: actions/checkout@v5
150150
with:
151151
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
152152
fetch-depth: 0 # a full history is required for pull request analysis
153153

154154
# Set up the Java environment for the next steps
155155
- name: Setup Java
156-
uses: actions/setup-java@v4
156+
uses: actions/setup-java@v5
157157
with:
158158
distribution: zulu
159159
java-version: 21
@@ -180,11 +180,11 @@ jobs:
180180

181181
# Check out the current repository
182182
- name: Fetch Sources
183-
uses: actions/checkout@v4
183+
uses: actions/checkout@v5
184184

185185
# Set up the Java environment for the next steps
186186
- name: Setup Java
187-
uses: actions/setup-java@v4
187+
uses: actions/setup-java@v5
188188
with:
189189
distribution: zulu
190190
java-version: 21
@@ -220,7 +220,7 @@ jobs:
220220

221221
# Check out the current repository
222222
- name: Fetch Sources
223-
uses: actions/checkout@v4
223+
uses: actions/checkout@v5
224224

225225
# Remove old release drafts by using the curl request for the available releases with a draft flag
226226
- name: Remove Old Release Drafts

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ jobs:
2727

2828
# Check out the current repository
2929
- name: Fetch Sources
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
ref: ${{ github.event.release.tag_name }}
3333

3434
# Set up the Java environment for the next steps
3535
- name: Setup Java
36-
uses: actions/setup-java@v4
36+
uses: actions/setup-java@v5
3737
with:
3838
distribution: zulu
3939
java-version: 21

.github/workflows/run-ui-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ jobs:
3333

3434
# Check out the current repository
3535
- name: Fetch Sources
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737

3838
# Set up the Java environment for the next steps
3939
- name: Setup Java
40-
uses: actions/setup-java@v4
40+
uses: actions/setup-java@v5
4141
with:
4242
distribution: zulu
4343
java-version: 21

0 commit comments

Comments
 (0)