Skip to content

Commit b730a25

Browse files
Regenerate GitHub Actions workflow
Executed command: sbt githubWorkflowGenerate
1 parent 3ef80e3 commit b730a25

File tree

2 files changed

+38
-38
lines changed

2 files changed

+38
-38
lines changed

.github/workflows/ci.yml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
matrix:
3030
os: [ubuntu-22.04]
31-
scala: [2.12, 2.13, 3]
31+
scala: [2.12.21, 3.8.1, 3.3.7]
3232
java: [temurin@17]
3333
project: [rootJS, rootJVM, rootNative]
3434
runs-on: ${{ matrix.os }}
@@ -127,92 +127,92 @@ jobs:
127127
if: matrix.java == 'temurin@17' && steps.setup-java-temurin-17.outputs.cache-hit == 'false'
128128
run: sbt +update
129129

130-
- name: Download target directories (2.12, rootJS)
130+
- name: Download target directories (2.12.21, rootJS)
131131
uses: actions/download-artifact@v6
132132
with:
133-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12-rootJS
133+
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.21-rootJS
134134

135-
- name: Inflate target directories (2.12, rootJS)
135+
- name: Inflate target directories (2.12.21, rootJS)
136136
run: |
137137
tar xf targets.tar
138138
rm targets.tar
139139
140-
- name: Download target directories (2.12, rootJVM)
140+
- name: Download target directories (2.12.21, rootJVM)
141141
uses: actions/download-artifact@v6
142142
with:
143-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12-rootJVM
143+
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.21-rootJVM
144144

145-
- name: Inflate target directories (2.12, rootJVM)
145+
- name: Inflate target directories (2.12.21, rootJVM)
146146
run: |
147147
tar xf targets.tar
148148
rm targets.tar
149149
150-
- name: Download target directories (2.12, rootNative)
150+
- name: Download target directories (2.12.21, rootNative)
151151
uses: actions/download-artifact@v6
152152
with:
153-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12-rootNative
153+
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.21-rootNative
154154

155-
- name: Inflate target directories (2.12, rootNative)
155+
- name: Inflate target directories (2.12.21, rootNative)
156156
run: |
157157
tar xf targets.tar
158158
rm targets.tar
159159
160-
- name: Download target directories (2.13, rootJS)
160+
- name: Download target directories (3.8.1, rootJS)
161161
uses: actions/download-artifact@v6
162162
with:
163-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13-rootJS
163+
name: target-${{ matrix.os }}-${{ matrix.java }}-3.8.1-rootJS
164164

165-
- name: Inflate target directories (2.13, rootJS)
165+
- name: Inflate target directories (3.8.1, rootJS)
166166
run: |
167167
tar xf targets.tar
168168
rm targets.tar
169169
170-
- name: Download target directories (2.13, rootJVM)
170+
- name: Download target directories (3.8.1, rootJVM)
171171
uses: actions/download-artifact@v6
172172
with:
173-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13-rootJVM
173+
name: target-${{ matrix.os }}-${{ matrix.java }}-3.8.1-rootJVM
174174

175-
- name: Inflate target directories (2.13, rootJVM)
175+
- name: Inflate target directories (3.8.1, rootJVM)
176176
run: |
177177
tar xf targets.tar
178178
rm targets.tar
179179
180-
- name: Download target directories (2.13, rootNative)
180+
- name: Download target directories (3.8.1, rootNative)
181181
uses: actions/download-artifact@v6
182182
with:
183-
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13-rootNative
183+
name: target-${{ matrix.os }}-${{ matrix.java }}-3.8.1-rootNative
184184

185-
- name: Inflate target directories (2.13, rootNative)
185+
- name: Inflate target directories (3.8.1, rootNative)
186186
run: |
187187
tar xf targets.tar
188188
rm targets.tar
189189
190-
- name: Download target directories (3, rootJS)
190+
- name: Download target directories (3.3.7, rootJS)
191191
uses: actions/download-artifact@v6
192192
with:
193-
name: target-${{ matrix.os }}-${{ matrix.java }}-3-rootJS
193+
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.7-rootJS
194194

195-
- name: Inflate target directories (3, rootJS)
195+
- name: Inflate target directories (3.3.7, rootJS)
196196
run: |
197197
tar xf targets.tar
198198
rm targets.tar
199199
200-
- name: Download target directories (3, rootJVM)
200+
- name: Download target directories (3.3.7, rootJVM)
201201
uses: actions/download-artifact@v6
202202
with:
203-
name: target-${{ matrix.os }}-${{ matrix.java }}-3-rootJVM
203+
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.7-rootJVM
204204

205-
- name: Inflate target directories (3, rootJVM)
205+
- name: Inflate target directories (3.3.7, rootJVM)
206206
run: |
207207
tar xf targets.tar
208208
rm targets.tar
209209
210-
- name: Download target directories (3, rootNative)
210+
- name: Download target directories (3.3.7, rootNative)
211211
uses: actions/download-artifact@v6
212212
with:
213-
name: target-${{ matrix.os }}-${{ matrix.java }}-3-rootNative
213+
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.7-rootNative
214214

215-
- name: Inflate target directories (3, rootNative)
215+
- name: Inflate target directories (3.3.7, rootNative)
216216
run: |
217217
tar xf targets.tar
218218
rm targets.tar
@@ -274,5 +274,5 @@ jobs:
274274
- name: Submit Dependencies
275275
uses: scalacenter/sbt-dependency-submission@v2
276276
with:
277-
modules-ignore: natchez-http4s-examples_2.12 natchez-http4s-examples_2.13 natchez-http4s-examples_3 rootjs_2.12 rootjs_2.13 rootjs_3 docs_2.12 docs_2.13 docs_3 rootjvm_2.12 rootjvm_2.13 rootjvm_3 rootnative_2.12 rootnative_2.13 rootnative_3
277+
modules-ignore: natchez-http4s-examples_2.12 natchez-http4s-examples_3 natchez-http4s-examples_3 rootjs_2.12 rootjs_3 rootjs_3 docs_2.12 docs_3 docs_3 rootjvm_2.12 rootjvm_3 rootjvm_3 rootnative_2.12 rootnative_3 rootnative_3
278278
configs-ignore: test scala-tool scala-doc-tool test-internal

.mergify.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ pull_request_rules:
1212
- or:
1313
- body~=labels:.*early-semver-patch
1414
- body~=labels:.*early-semver-minor
15-
- status-success=Test (ubuntu-22.04, 2.12, temurin@17, rootJS)
16-
- status-success=Test (ubuntu-22.04, 2.12, temurin@17, rootJVM)
17-
- status-success=Test (ubuntu-22.04, 2.12, temurin@17, rootNative)
18-
- status-success=Test (ubuntu-22.04, 2.13, temurin@17, rootJS)
19-
- status-success=Test (ubuntu-22.04, 2.13, temurin@17, rootJVM)
20-
- status-success=Test (ubuntu-22.04, 2.13, temurin@17, rootNative)
21-
- status-success=Test (ubuntu-22.04, 3, temurin@17, rootJS)
22-
- status-success=Test (ubuntu-22.04, 3, temurin@17, rootJVM)
23-
- status-success=Test (ubuntu-22.04, 3, temurin@17, rootNative)
15+
- status-success=Test (ubuntu-22.04, 2.12.21, temurin@17, rootJS)
16+
- status-success=Test (ubuntu-22.04, 2.12.21, temurin@17, rootJVM)
17+
- status-success=Test (ubuntu-22.04, 2.12.21, temurin@17, rootNative)
18+
- status-success=Test (ubuntu-22.04, 3.8.1, temurin@17, rootJS)
19+
- status-success=Test (ubuntu-22.04, 3.8.1, temurin@17, rootJVM)
20+
- status-success=Test (ubuntu-22.04, 3.8.1, temurin@17, rootNative)
21+
- status-success=Test (ubuntu-22.04, 3.3.7, temurin@17, rootJS)
22+
- status-success=Test (ubuntu-22.04, 3.3.7, temurin@17, rootJVM)
23+
- status-success=Test (ubuntu-22.04, 3.3.7, temurin@17, rootNative)
2424
actions:
2525
merge: {}
2626
- name: Label core PRs

0 commit comments

Comments
 (0)