chore(deps): bump actions/upload-artifact from 3 to 4 (#7471)

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/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>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2024-03-06 07:26:03 +00:00 committed by GitHub
parent ec3076c3c8
commit a8dbb052de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 8 deletions

View File

@ -72,7 +72,7 @@ jobs:
cp README.md zitadel-${{ matrix.goos }}-${{ matrix.goarch }}/ cp README.md zitadel-${{ matrix.goos }}-${{ matrix.goarch }}/
tar -czvf zitadel-${{ matrix.goos }}-${{ matrix.goarch }}.tar.gz zitadel-${{ matrix.goos }}-${{ matrix.goarch }} tar -czvf zitadel-${{ matrix.goos }}-${{ matrix.goarch }}.tar.gz zitadel-${{ matrix.goos }}-${{ matrix.goarch }}
- -
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: zitadel-${{ matrix.goos }}-${{ matrix.goarch }} name: zitadel-${{ matrix.goos }}-${{ matrix.goarch }}
path: zitadel-${{ matrix.goos }}-${{ matrix.goarch }}.tar.gz path: zitadel-${{ matrix.goos }}-${{ matrix.goarch }}.tar.gz
@ -82,7 +82,7 @@ jobs:
needs: executable needs: executable
steps: steps:
- -
uses: actions/download-artifact@v3 uses: actions/download-artifact@v4
with: with:
path: executables path: executables
- -
@ -93,7 +93,7 @@ jobs:
run: sha256sum * > checksums.txt run: sha256sum * > checksums.txt
working-directory: executables working-directory: executables
- -
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: checksums.txt name: checksums.txt
path: executables/checksums.txt path: executables/checksums.txt

View File

@ -63,7 +63,7 @@ jobs:
username: ${{ github.actor }} username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }} password: ${{ secrets.GITHUB_TOKEN }}
- -
uses: actions/download-artifact@v3 uses: actions/download-artifact@v4
with: with:
path: .artifacts path: .artifacts
name: zitadel-linux-${{ matrix.arch }} name: zitadel-linux-${{ matrix.arch }}
@ -116,7 +116,7 @@ jobs:
touch "/tmp/digests/scratch/${digest#sha256:}" touch "/tmp/digests/scratch/${digest#sha256:}"
- -
name: Upload digest name: Upload digest
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: digests name: digests
path: /tmp/digests path: /tmp/digests
@ -139,7 +139,7 @@ jobs:
steps: steps:
- -
name: Download digests name: Download digests
uses: actions/download-artifact@v3 uses: actions/download-artifact@v4
with: with:
name: digests name: digests
path: /tmp/digests path: /tmp/digests

View File

@ -16,7 +16,7 @@ jobs:
name: Checkout Repository name: Checkout Repository
uses: actions/checkout@v3 uses: actions/checkout@v3
- -
uses: actions/download-artifact@v3 uses: actions/download-artifact@v4
with: with:
path: .artifacts path: .artifacts
name: zitadel-linux-amd64 name: zitadel-linux-amd64
@ -52,7 +52,7 @@ jobs:
command: npm run e2e command: npm run e2e
config-file: cypress.config.ts config-file: cypress.config.ts
- -
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
if: always() if: always()
with: with:
name: production-tests-${{ matrix.browser }} name: production-tests-${{ matrix.browser }}