diff options
author | BlackDex <[email protected]> | 2022-12-15 17:15:48 +0100 |
---|---|---|
committer | BlackDex <[email protected]> | 2022-12-16 14:52:42 +0100 |
commit | 8b6dfe48b70909caea0c8a4bf51bc89a451b766a (patch) | |
tree | 1ab824f62f443b864f30b0aca4332cb8ac0d5ece /.github/workflows/release.yml | |
parent | d0b53a6a3de61d3352afb8fb11c97e29cefa454a (diff) | |
download | vaultwarden-8b6dfe48b70909caea0c8a4bf51bc89a451b766a.tar.gz vaultwarden-8b6dfe48b70909caea0c8a4bf51bc89a451b766a.zip |
Disable groups by default and Some optimizations
- Put groups support behind a feature flag, and disabled by default.
The reason is that it has some known issues, but we want to keep
optimizing this feature. Putting it behind a feature flag could help
some users, and the developers into optimizing this feature without to
much trouble.
Further:
- Updates Rust to v1.66.0
- Updated GHA workflows
- Updated Alpine to 3.17
- Updated jquery to v3.6.2
- Moved jdenticon.js to load at the bottom, fixes an issue on chromium
- Added autocomplete attribute to admin login password field
- Added some extra CSP options (Tested this on Safari, Firefox, Chrome, Bitwarden Desktop)
- Moved uppercase convertion from runtime to compile-time using `paste`
for building the environment variables, lowers heap allocations.
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r-- | .github/workflows/release.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aca21ca5..b3690ceb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,7 @@ jobs: steps: - name: Skip Duplicates Actions id: skip_check - uses: fkirc/skip-duplicate-actions@f11521568414503656a5af807dc3018c012552c4 # v5.2.0 + uses: fkirc/skip-duplicate-actions@12aca0a884f6137d619d6a8a09fcc3406ced5281 # v5.3.0 with: cancel_others: 'true' # Only run this when not creating a tag @@ -39,6 +39,7 @@ jobs: docker-build: runs-on: ubuntu-20.04 + timeout-minutes: 120 needs: skip_check # Start a local docker registry to be used to generate multi-arch images. services: @@ -60,7 +61,7 @@ jobs: steps: # Checkout the repo - name: Checkout - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 + uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0 with: fetch-depth: 0 |