Skip to content

Commit 4eeb30c

Browse files
authored
[MINOR] Updated deprecated v3 actions to v4 for github actions (#128)
[MINOR] Updated actions/upload-artifact to v4 - Deprecation of v3 actions https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
1 parent 9632982 commit 4eeb30c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ jobs:
7878
MAVEN_OPTS: -Djansi.force=true
7979
- name: Upload unit test results
8080
if: ${{ failure() }}
81-
uses: actions/upload-artifact@v3
81+
uses: actions/upload-artifact@v4
8282
with:
8383
name: surefire-reports-${{ matrix.profile.name }}
8484
path: ./**/target/surefire-reports/
8585
if-no-files-found: ignore
8686
- name: Upload integration test results
8787
if: ${{ failure() }}
88-
uses: actions/upload-artifact@v3
88+
uses: actions/upload-artifact@v4
8989
with:
9090
name: failsafe-reports-${{ matrix.profile.name }}
9191
path: ./**/target/failsafe-reports/

.github/workflows/manual.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,14 @@ jobs:
7171
MAVEN_OPTS: -Djansi.force=true
7272
- name: Upload unit test results
7373
if: ${{ failure() }}
74-
uses: actions/upload-artifact@v3
74+
uses: actions/upload-artifact@v4
7575
with:
7676
name: surefire-reports
7777
path: ./**/target/surefire-reports/
7878
if-no-files-found: ignore
7979
- name: Upload integration test results
8080
if: ${{ failure() }}
81-
uses: actions/upload-artifact@v3
81+
uses: actions/upload-artifact@v4
8282
with:
8383
name: failsafe-reports
8484
path: ./**/target/failsafe-reports/

0 commit comments

Comments
 (0)