Skip to content

Commit

Permalink
deps(ci): bump actions/upload-artifact from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and gotson committed Dec 18, 2023
1 parent cabed41 commit 6d7dfdd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
JRELEASER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: JReleaser Changelog output
if: always() && needs.version.outputs.should_release
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: jreleaser-changelog
path: |
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
APPLE_KEY_ID: ${{ secrets.APPLE_KEY_ID }}
- name: Upload Conveyor log
if: always() && inputs.github_release
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: conveyor-make-site
path: ~/.cache/hydraulic/conveyor/logs/log.latest.txt
Expand All @@ -199,7 +199,7 @@ jobs:
APPLE_KEY_ID: ${{ secrets.APPLE_KEY_ID }}
- name: Upload Conveyor log
if: always() && inputs.github_release
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: conveyor-make-old-site
path: ~/.cache/hydraulic/conveyor/logs/log.latest.txt
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
JRELEASER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: JReleaser Release output
if: always() && inputs.github_release
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: jreleaser-release
path: |
Expand All @@ -245,7 +245,7 @@ jobs:
JRELEASER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: JReleaser Announce output
if: always() && inputs.github_release
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: jreleaser-announce
path: |
Expand All @@ -265,7 +265,7 @@ jobs:
JRELEASER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: JReleaser Publish output
if: always() && inputs.docker_release
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: jreleaser-publish
path: |
Expand All @@ -285,7 +285,7 @@ jobs:
CONVEYOR_MSSTORE_TENANT_ID: ${{ secrets.CONVEYOR_MSSTORE_TENANT_ID }}
- name: Upload Conveyor log
if: always() && inputs.msstore_release
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: conveyor-ms-store-release
path: ~/.cache/hydraulic/conveyor/logs/log.latest.txt
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ jobs:

- name: Upload Unit Test Results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-results
path: komga/build/test-results/

- name: Upload Unit Test Reports
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-reports
path: komga/build/reports/tests/
Expand All @@ -60,7 +60,7 @@ jobs:

- name: Upload JDK required modules
if: steps.conveyor_compare.outcome == 'failure'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: conveyor-required-jdk-modules
path: ./output/required-jdk-modules.txt
Expand Down

0 comments on commit 6d7dfdd

Please sign in to comment.