Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3 to 4 (#48)
Browse files Browse the repository at this point in the history
* Bump actions/upload-artifact from 3 to 4

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] <support@github.com>

* Disambiguate artifact name

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ringler, Moritz <moritz.ringler@zeiss.com>
  • Loading branch information
dependabot[bot] and m-ringler committed Jan 12, 2024
1 parent aaa1c34 commit b61b07d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/czicompress_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
# upload the build-results to artifacts-store
- name: Upload artifacts
if: matrix.build == 'Release'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: czicompress-${{env.name}}
path: czicompress/czicompress-${{env.name}}/
8 changes: 4 additions & 4 deletions .github/workflows/czishrink_dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ jobs:
verbose: true

- name: Upload dotnet test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dotnet-results-${{ matrix.config.os }}
name: dotnet-results-${{ matrix.config.os }}-${{ matrix.build }}
path: TestResults
# Use always() to also publish test results when there are test failures
if: ${{ always() }}
Expand All @@ -129,7 +129,7 @@ jobs:
-o ${{ github.workspace }}/publish
- name: Upload published binaries
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ (github.event_name == 'push') && (matrix.build == 'Release') }}
with:
name: CziShrink_${{ steps.getversion.outputs.version }}_${{ matrix.config.osfamily}}-x64
Expand All @@ -154,7 +154,7 @@ jobs:
-o ${{ github.workspace }}/installer
- name: Upload Wix installer
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ (github.event_name == 'push') && (matrix.build == 'Release') && (matrix.config.os == 'windows-latest') }}
with:
name: CziShrink_Installer${{ steps.getversion.outputs.version }}_${{ matrix.config.osfamily}}-x64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mega-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# Upload MegaLinter artifacts
- name: Archive production artifacts
if: ${{ success() || failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: MegaLinter reports
path: |
Expand Down

0 comments on commit b61b07d

Please sign in to comment.