diff options
author | BlackDex <[email protected]> | 2023-06-11 18:11:09 +0200 |
---|---|---|
committer | BlackDex <[email protected]> | 2023-08-12 12:29:33 +0200 |
commit | aaeae16983d83ce0cec3f1b4c841eb35b6555f43 (patch) | |
tree | 3df8ea4d9707f22c3653f87c4a385a6839e1ad22 /.github/workflows/release.yml | |
parent | 3dbfc484a54c41d1759646444b439da06445060b (diff) | |
download | vaultwarden-aaeae16983d83ce0cec3f1b4c841eb35b6555f43.tar.gz vaultwarden-aaeae16983d83ce0cec3f1b4c841eb35b6555f43.zip |
Update images to Bookworm and PQ15
This PR updates the base images to use Debian Bookworm as base image. Also the MUSL/Alpine builds now use OpenSSLv3 and PostgreSQL v15.
The GHA Workflows are updated to use Ubuntu 22.04 to better match the versions of Debian Bookworm.
Also:
- Enabled spares crate registry
- Updated workflow actions
- Updated Rust to v1.71.0
- The rust-musl images now use musl v1.2.3 for the 32bit arch's if the Rust version is v1.71.0 or higher.
The 64bit arch's already used musl v1.2.3.
- Updated crates.
Improves / Closes #3434
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c562e24a..62de863d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: # Some checks to determine if we need to continue with building a new docker. # We will skip this check if we are creating a tag, because that has the same hash as a previous run already. skip_check: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 if: ${{ github.repository == 'dani-garcia/vaultwarden' }} outputs: should_skip: ${{ steps.skip_check.outputs.should_skip }} @@ -38,7 +38,7 @@ jobs: if: ${{ startsWith(github.ref, 'refs/heads/') }} docker-build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 timeout-minutes: 120 needs: skip_check # Start a local docker registry to be used to generate multi-arch images. |