Skip to content

Commit

Permalink
[OSS-ONLY] Fix build failure due to deprecated upload-artifact version.
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Teng <[email protected]>
  • Loading branch information
Jason Teng committed Oct 31, 2024
1 parent 2a8903a commit a7d23c4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/jdbc-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Upload Log
if: always() && steps.jdbc.outcome == 'failure'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: postgres-log
path: ~/postgres/data/logfile
Expand All @@ -61,14 +61,14 @@ jobs:
- name: Upload Run Summary
if: always() && steps.test-file-rename == 'success'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: run-summary.log
path: test/JDBC/Info/run-summary.log

- name: Upload Output Diff
if: always() && steps.jdbc.outcome == 'failure'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: output-diff.diff
path: test/JDBC/Info/output-diff.diff
6 changes: 3 additions & 3 deletions .github/workflows/minor-version-upgrade-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
- name: Upload Log
if: always() && steps.jdbc.outcome == 'failure'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: postgres-log
path: ~/postgres/data/logfile
Expand All @@ -130,14 +130,14 @@ jobs:
- name: Upload Run Summary
if: always() && steps.test-file-rename == 'success'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: run-summary.log
path: test/JDBC/Info/run-summary.log

- name: Upload Output Diff
if: always() && steps.jdbc.outcome == 'failure'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: output-diff.diff
path: test/JDBC/Info/output-diff.diff

0 comments on commit a7d23c4

Please sign in to comment.