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) (#3219)
  • Loading branch information
ldetmer authored Sep 18, 2024
1 parent 6127ea5 commit 75ca84c
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 @@ -91,7 +91,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 @@ -177,7 +177,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 @@ -77,7 +77,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 @@ -132,7 +132,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 75ca84c

Please sign in to comment.