Skip to content

Commit de59ab0

Browse files
Bump the dependencies group across 1 directory with 4 updates
Bumps the dependencies group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [whelk-io/maven-settings-xml-action](https://github.com/whelk-io/maven-settings-xml-action), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `whelk-io/maven-settings-xml-action` from 21 to 22 - [Release notes](https://github.com/whelk-io/maven-settings-xml-action/releases) - [Commits](whelk-io/maven-settings-xml-action@v21...v22) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: whelk-io/maven-settings-xml-action dependency-version: '22' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent a08e283 commit de59ab0

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ jobs:
3434
key: m2-${{ hashFiles('**/pom.xml') }}
3535
restore-keys: |
3636
m2-
37-
- uses: actions/checkout@v5
37+
- uses: actions/checkout@v6
3838
- name: Set up JDK 17
3939
uses: actions/setup-java@v5
4040
with:
4141
distribution: temurin
4242
java-version: 17
4343
- name: Generate settings.xml for Maven Builds
44-
uses: whelk-io/maven-settings-xml-action@v21
44+
uses: whelk-io/maven-settings-xml-action@v22
4545
with:
4646
repositories: '[{ "id": "jboss", "name": "JBoss", "url": "https://repository.jboss.org/nexus/content/groups/public" }]'
4747
- name: Print Version
@@ -52,11 +52,11 @@ jobs:
5252
shell: bash
5353
run: tar -czf maven-repo.tgz -C ~ .m2/repository
5454
- name: Persist Maven Repo
55-
uses: actions/upload-artifact@v4
55+
uses: actions/upload-artifact@v5
5656
with:
5757
name: maven-repo
5858
path: maven-repo.tgz
59-
- uses: actions/upload-artifact@v4
59+
- uses: actions/upload-artifact@v5
6060
if: failure()
6161
with:
6262
name: surefire-reports-build
@@ -93,9 +93,9 @@ jobs:
9393
- name: Host information
9494
run: |
9595
hostname || true
96-
- uses: actions/checkout@v5
96+
- uses: actions/checkout@v6
9797
- name: Download Maven Repo
98-
uses: actions/download-artifact@v4
98+
uses: actions/download-artifact@v6
9999
with:
100100
name: maven-repo
101101
path: .
@@ -108,14 +108,14 @@ jobs:
108108
distribution: ${{ matrix.openjdk_impl }}
109109
java-version: ${{ matrix.jdk }}
110110
- name: Generate settings.xml for Maven Builds
111-
uses: whelk-io/maven-settings-xml-action@v21
111+
uses: whelk-io/maven-settings-xml-action@v22
112112
with:
113113
repositories: '[{ "id": "jboss", "name": "JBoss", "url": "https://repository.jboss.org/nexus/content/groups/public" }]'
114114
- name: Print Version
115115
run: mvn -v
116116
- name: Run Tests
117117
run: mvn -U -B -fae test -Pproxy '-Dopenssl=${{ matrix.openssl }} -DfailIfNoTests=false' -pl ${{ matrix.module }}
118-
- uses: actions/upload-artifact@v4
118+
- uses: actions/upload-artifact@v5
119119
if: failure()
120120
with:
121121
name: surefire-reports-${{ matrix.jdk }}-${{ matrix.module }}-${{ matrix.os }}
@@ -144,9 +144,9 @@ jobs:
144144
- name: Host information
145145
run: |
146146
hostname || true
147-
- uses: actions/checkout@v5
147+
- uses: actions/checkout@v6
148148
- name: Download Maven Repo
149-
uses: actions/download-artifact@v4
149+
uses: actions/download-artifact@v6
150150
with:
151151
name: maven-repo
152152
path: .
@@ -158,14 +158,14 @@ jobs:
158158
with:
159159
java-version: ${{ matrix.jdk }}
160160
- name: Generate settings.xml for Maven Builds
161-
uses: whelk-io/maven-settings-xml-action@v21
161+
uses: whelk-io/maven-settings-xml-action@v22
162162
with:
163163
repositories: '[{ "id": "jboss", "name": "JBoss", "url": "https://repository.jboss.org/nexus/content/groups/public" }]'
164164
- name: Print Version
165165
run: mvn -v
166166
- name: Run Tests
167167
run: mvn -U -B -fae test ${{ matrix.proxy && '-Pproxy' || '' }} '-DfailIfNoTests=false' -pl ${{ matrix.module }} -Dtest.ipv6=true
168-
- uses: actions/upload-artifact@v4
168+
- uses: actions/upload-artifact@v5
169169
if: failure()
170170
with:
171171
name: surefire-reports-${{ matrix.jdk }}-ipv6-${{ matrix.module }}${{ matrix.proxy }}-${{ matrix.os }}

.github/workflows/nightly-integration.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout Undertow
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828
with:
2929
repository: undertow-io/undertow
3030
ref: '2.4.x'
@@ -42,7 +42,7 @@ jobs:
4242
run: |
4343
cd ~
4444
find ./.m2/repository -type d -name "*SNAPSHOT" -print0 | xargs -0 tar -czf ~/undertow-maven-repository.tar.gz
45-
- uses: actions/upload-artifact@v4
45+
- uses: actions/upload-artifact@v5
4646
with:
4747
name: undertow-maven-repository
4848
path: ~/undertow-maven-repository.tar.gz
@@ -61,14 +61,14 @@ jobs:
6161

6262
steps:
6363
- name: Checkout Undertow EE
64-
uses: actions/checkout@v5
64+
uses: actions/checkout@v6
6565
- name: Set up JDK ${{ matrix.java }}
6666
uses: actions/setup-java@v5
6767
with:
6868
java-version: ${{ matrix.java }}
6969
distribution: 'temurin'
7070
cache: 'maven'
71-
- uses: actions/download-artifact@v5
71+
- uses: actions/download-artifact@v6
7272
with:
7373
name: undertow-maven-repository
7474
path: .
@@ -78,7 +78,7 @@ jobs:
7878
tar -xzf undertow-maven-repository.tar.gz -C ~
7979
- name: Build with Maven Java ${{ matrix.java }} - ${{ matrix.os }}
8080
run: mvn -V clean install -U -B -fae ${{ matrix.profile }} '-Dversion.io.undertow=${{ needs.snapshot-build.outputs.undertow-version }}'
81-
- uses: actions/upload-artifact@v4
81+
- uses: actions/upload-artifact@v5
8282
if: failure()
8383
with:
8484
name: surefire-reports-${{ matrix.os }}-${{ matrix.java }}-${{ matrix.profile }}

0 commit comments

Comments
 (0)