mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-09-04 00:38:10 +00:00
- Updated all the crates, which probably fixes #5959 - Updated all the workflows and tested it with zizmor Also added zizmor as a workflow it self. - Updated the issue template to better mention to search first. Signed-off-by: BlackDex <black.dex@gmail.com>
29 lines
681 B
YAML
29 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@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
|
|
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
|