Skip to content

Commit 199d2e3

Browse files
authored
Update GH action (#1615)
1 parent d52659a commit 199d2e3

File tree

3 files changed

+564
-564
lines changed

3 files changed

+564
-564
lines changed

.github/workflows/release.actions.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
# Persist logs
9292
- name: JReleaser release output
9393
if: steps.check_changes.outputs.skip == 'false'
94-
uses: actions/upload-artifact@v3
94+
uses: actions/upload-artifact@v4
9595
with:
9696
name: jreleaser-release
9797
path: |

base/src/test/java/io/quarkus/code/misc/QuarkusExtensionUtilsTest.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ void textContent() throws IOException {
3333
extensions.get(0), is(CodeQuarkusExtension.builder()
3434
.id("io.quarkus:quarkus-resteasy")
3535
.shortId("ignored")
36-
.version("999-SNAPSHOT")
36+
.version("5.5.0.1")
3737
.name("RESTEasy JAX-RS")
3838
.description("REST endpoint framework implementing JAX-RS and more")
3939
.shortName("jax-rs")
@@ -46,12 +46,12 @@ void textContent() throws IOException {
4646
.guide("https://quarkus.io/guides/rest-json")
4747
.order(0)
4848
.platform(true)
49-
.bom("io.quarkus:quarkus-bom:999-SNAPSHOT")
49+
.bom("io.quarkus:quarkus-bom:5.5.0.1")
5050
.build()));
5151
assertThat(extensions.get(6), is(CodeQuarkusExtension.builder()
5252
.id("io.quarkus:quarkus-rest-client-mutiny")
5353
.shortId("ignored")
54-
.version("999-SNAPSHOT")
54+
.version("5.5.0.1")
5555
.name("Mutiny support for REST Client")
5656
.description("Enable Mutiny for the REST client")
5757
.category("Web")
@@ -63,7 +63,7 @@ void textContent() throws IOException {
6363
.guide(null)
6464
.order(6)
6565
.platform(true)
66-
.bom("io.quarkus:quarkus-bom:999-SNAPSHOT")
66+
.bom("io.quarkus:quarkus-bom:5.5.0.1")
6767
.build()));
6868
}
6969

0 commit comments

Comments
 (0)