mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-09-09 10:25:56 +03:00
- Update crates to the latest version (Some are yanked and downgraded) - Update GHA's - Update web-vault to v2025.8.0 Signed-off-by: BlackDex <black.dex@gmail.com>
30 lines
681 B
YAML
30 lines
681 B
YAML
name: Check templates
|
|
permissions: {}
|
|
|
|
on: [ push, pull_request ]
|
|
|
|
jobs:
|
|
docker-templates:
|
|
name: Validate docker templates
|
|
permissions:
|
|
contents: read
|
|
runs-on: ubuntu-24.04
|
|
timeout-minutes: 30
|
|
|
|
steps:
|
|
# Checkout the repo
|
|
- name: "Checkout"
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0
|
|
with:
|
|
persist-credentials: false
|
|
# End Checkout the repo
|
|
|
|
- name: Run make to rebuild templates
|
|
working-directory: docker
|
|
run: make
|
|
|
|
- name: Check for unstaged changes
|
|
working-directory: docker
|
|
run: git diff --exit-code
|
|
continue-on-error: false
|