Skip to content

Commit 6c917ea

Browse files
committed
Update workflow to lastest version
1 parent 7ccf425 commit 6c917ea

1 file changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/ci.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
timeout-minutes: 60
3636
steps:
3737
- name: Checkout current branch (full)
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v6
3939
with:
4040
fetch-depth: 0
4141

@@ -45,7 +45,7 @@ jobs:
4545
- name: Setup Java (temurin@17)
4646
id: setup-java-temurin-17
4747
if: matrix.java == 'temurin@17'
48-
uses: actions/setup-java@v4
48+
uses: actions/setup-java@v5
4949
with:
5050
distribution: temurin
5151
java-version: 17
@@ -91,7 +91,7 @@ jobs:
9191

9292
- name: Upload target directories
9393
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main')
94-
uses: actions/upload-artifact@v4
94+
uses: actions/upload-artifact@v5
9595
with:
9696
name: target-${{ matrix.os }}-${{ matrix.java }}-${{ matrix.scala }}-${{ matrix.project }}
9797
path: targets.tar
@@ -107,7 +107,7 @@ jobs:
107107
runs-on: ${{ matrix.os }}
108108
steps:
109109
- name: Checkout current branch (full)
110-
uses: actions/checkout@v4
110+
uses: actions/checkout@v6
111111
with:
112112
fetch-depth: 0
113113

@@ -117,7 +117,7 @@ jobs:
117117
- name: Setup Java (temurin@17)
118118
id: setup-java-temurin-17
119119
if: matrix.java == 'temurin@17'
120-
uses: actions/setup-java@v4
120+
uses: actions/setup-java@v5
121121
with:
122122
distribution: temurin
123123
java-version: 17
@@ -128,7 +128,7 @@ jobs:
128128
run: sbt +update
129129

130130
- name: Download target directories (2.13, rootJS)
131-
uses: actions/download-artifact@v4
131+
uses: actions/download-artifact@v6
132132
with:
133133
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13-rootJS
134134

@@ -138,7 +138,7 @@ jobs:
138138
rm targets.tar
139139
140140
- name: Download target directories (2.13, rootJVM)
141-
uses: actions/download-artifact@v4
141+
uses: actions/download-artifact@v6
142142
with:
143143
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13-rootJVM
144144

@@ -148,7 +148,7 @@ jobs:
148148
rm targets.tar
149149
150150
- name: Download target directories (2.13, rootNative)
151-
uses: actions/download-artifact@v4
151+
uses: actions/download-artifact@v6
152152
with:
153153
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13-rootNative
154154

@@ -158,7 +158,7 @@ jobs:
158158
rm targets.tar
159159
160160
- name: Download target directories (3, rootJS)
161-
uses: actions/download-artifact@v4
161+
uses: actions/download-artifact@v6
162162
with:
163163
name: target-${{ matrix.os }}-${{ matrix.java }}-3-rootJS
164164

@@ -168,7 +168,7 @@ jobs:
168168
rm targets.tar
169169
170170
- name: Download target directories (3, rootJVM)
171-
uses: actions/download-artifact@v4
171+
uses: actions/download-artifact@v6
172172
with:
173173
name: target-${{ matrix.os }}-${{ matrix.java }}-3-rootJVM
174174

@@ -178,7 +178,7 @@ jobs:
178178
rm targets.tar
179179
180180
- name: Download target directories (3, rootNative)
181-
uses: actions/download-artifact@v4
181+
uses: actions/download-artifact@v6
182182
with:
183183
name: target-${{ matrix.os }}-${{ matrix.java }}-3-rootNative
184184

@@ -221,7 +221,7 @@ jobs:
221221
runs-on: ${{ matrix.os }}
222222
steps:
223223
- name: Checkout current branch (full)
224-
uses: actions/checkout@v4
224+
uses: actions/checkout@v6
225225
with:
226226
fetch-depth: 0
227227

@@ -231,7 +231,7 @@ jobs:
231231
- name: Setup Java (temurin@17)
232232
id: setup-java-temurin-17
233233
if: matrix.java == 'temurin@17'
234-
uses: actions/setup-java@v4
234+
uses: actions/setup-java@v5
235235
with:
236236
distribution: temurin
237237
java-version: 17
@@ -256,7 +256,7 @@ jobs:
256256
runs-on: ${{ matrix.os }}
257257
steps:
258258
- name: Checkout current branch (full)
259-
uses: actions/checkout@v4
259+
uses: actions/checkout@v6
260260
with:
261261
fetch-depth: 0
262262

@@ -266,7 +266,7 @@ jobs:
266266
- name: Setup Java (temurin@17)
267267
id: setup-java-temurin-17
268268
if: matrix.java == 'temurin@17'
269-
uses: actions/setup-java@v4
269+
uses: actions/setup-java@v5
270270
with:
271271
distribution: temurin
272272
java-version: 17

0 commit comments

Comments
 (0)