Skip to content

Commit

Permalink
fix(dep): update all actions/upload-artifact to v4 as v2 was deprecat…
Browse files Browse the repository at this point in the history
…ed and now fails work flows (#3204)
  • Loading branch information
ldetmer authored Sep 10, 2024
1 parent 96709b2 commit 2f0f275
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integrationTests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
- name: Archive logs
if: always()
continue-on-error: true
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Integration Test Logs - ${{ matrix.it}}
path: |
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
- name: Archive logs
if: always()
continue-on-error: true
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Integration Test Logs - ${{ matrix.it}}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unitTests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Archive logs
if: always()
continue-on-error: true
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Unit Test Logs - Java ${{ matrix.java }}
path: |
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
- name: Archive Artifacts
if: always()
continue-on-error: true
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Release Artifacts
path: |
Expand Down

0 comments on commit 2f0f275

Please sign in to comment.