Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Bump actions/upload-artifact from 3 to 4 #1382

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/create-icons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
# UPLOAD ICONS
- id: upload-icons
name: Upload generated icons
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: icons
path: ./schemacrawler-website/src/site/resources/images/schemacrawler_*.*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/database-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
.github/scripts/unit-tests-results-output.sh
- id: upload-unit-tests-results-output
name: Upload expected results files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: unit-tests-results-output
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
.github/scripts/unit-tests-results-output.sh
- id: upload-unit-tests-results-output
name: Upload expected results files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: unit-tests-results-output
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[mGK]//g" original-super-linter.log > super-linter.log
- id: persist-log
name: Persist linter logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: super-linter-log
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

- id: upload-link-check-report
name: Upload website link check report
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # @v3
uses: actions/upload-artifact@353073034f1f3c6d1a65ede161c5a2ca79650a49 # @v3
with:
path: ./lychee/out.md
name: website-link-check-report.md
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
# CREATE GITHUB RELEASE AND ADD ASSETS
- id: upload-artifacts
name: Upload installers
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: release-artifacts-v16.20.6
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
- id: upload-coverage-test-results
name: Upload coverage test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: contains(github.ref, 'main')
with:
name: jacoco-coverage-test-results
Expand Down
Loading