diff options
author | Mathijs van Veluw <[email protected]> | 2024-09-01 15:53:03 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-09-01 15:53:03 +0200 |
commit | 55623ad9c67abba7f2136858226a08854ce0f050 (patch) | |
tree | 63bceeb1c437812b1daa9c872038ed800cc04276 /.github/workflows | |
parent | e9acd8bd3c3142cccb021ab5759a8410ef335aaa (diff) | |
download | vaultwarden-55623ad9c67abba7f2136858226a08854ce0f050.tar.gz vaultwarden-55623ad9c67abba7f2136858226a08854ce0f050.zip |
Update web-vault, crates and gha (#4909)
- Updated the web-vault to fix an issue with personal export.
Thanks to @stefan0xC for patching this.
Fixes #4875
- Updated crates to there latest version
- Updated the GitHub Actions
- Updated the xx image to the latest version
Signed-off-by: BlackDex <[email protected]>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/release.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e5c352b8..074ee8ed 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -165,7 +165,7 @@ jobs: echo "CONTAINER_REGISTRIES=${CONTAINER_REGISTRIES:+${CONTAINER_REGISTRIES},}localhost:5000/vaultwarden/server" | tee -a "${GITHUB_ENV}" - name: Bake ${{ matrix.base_image }} containers - uses: docker/bake-action@8cea75c238fa977d2ac1fa69d09604b3b740f809 # v5.6.1 + uses: docker/bake-action@76cc8060bdff6d632a465001e4cf300684c5472c # v5.7.0 env: BASE_TAGS: "${{ env.BASE_TAGS }}" SOURCE_COMMIT: "${{ env.SOURCE_COMMIT }}" @@ -223,28 +223,28 @@ jobs: # Upload artifacts to Github Actions - name: "Upload amd64 artifact" - uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6 + uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 if: ${{ matrix.base_image == 'alpine' }} with: name: vaultwarden-${{ env.SOURCE_VERSION }}-linux-amd64 path: vaultwarden-amd64 - name: "Upload arm64 artifact" - uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6 + uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 if: ${{ matrix.base_image == 'alpine' }} with: name: vaultwarden-${{ env.SOURCE_VERSION }}-linux-arm64 path: vaultwarden-arm64 - name: "Upload armv7 artifact" - uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6 + uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 if: ${{ matrix.base_image == 'alpine' }} with: name: vaultwarden-${{ env.SOURCE_VERSION }}-linux-armv7 path: vaultwarden-armv7 - name: "Upload armv6 artifact" - uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6 + uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 if: ${{ matrix.base_image == 'alpine' }} with: name: vaultwarden-${{ env.SOURCE_VERSION }}-linux-armv6 |