Skip to content

Commit 3cc323a

Browse files
authored
Merge pull request #47 from resteasy/dependabot/github_actions/actions/upload-artifact-7
Bump actions/upload-artifact from 6 to 7
2 parents 53068b1 + aa7afa8 commit 3cc323a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
cache: 'maven'
5656
- name: Build with Maven - ${{ matrix.os }} - JDK ${{ matrix.java }}
5757
run: mvn -B -ntp clean install -fae
58-
- uses: actions/upload-artifact@v6
58+
- uses: actions/upload-artifact@v7
5959
if: failure()
6060
with:
6161
name: surefire-reports-${{ matrix.os }}-jdk-${{ matrix.java }}

.github/workflows/resteasy-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,20 +60,20 @@ jobs:
6060
- name: Build and Test RESTEasy Jety Java ${{ matrix.java }} - ${{ matrix.os }}
6161
run: |
6262
mvn clean install -B '-Dversion.org.jboss.resteasy=${{ needs.resteasy-build.outputs.resteasy-version }}'
63-
- uses: actions/upload-artifact@v6
63+
- uses: actions/upload-artifact@v7
6464
if: failure()
6565
with:
6666
name: surefire-reports-${{ matrix.os }}-${{ matrix.java }}
6767
path: |
6868
'**/surefire-reports/'
69-
- uses: actions/upload-artifact@v6
69+
- uses: actions/upload-artifact@v7
7070
if: failure()
7171
with:
7272
name: failsafe-reports-${{ matrix.os }}-${{ matrix.java }}
7373
path: |
7474
'**/failsafe-reports/'
7575
- name: Upload server logs
76-
uses: actions/upload-artifact@v6
76+
uses: actions/upload-artifact@v7
7777
if: failure()
7878
with:
7979
name: server-logs-${{ matrix.os }}-${{ matrix.java }}

0 commit comments

Comments
 (0)