diff options
author | Daniel GarcĂa <[email protected]> | 2021-03-30 23:31:58 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-03-30 23:31:58 +0200 |
commit | 5c5700caa72a4a4e38b98ebfdc42866185965d86 (patch) | |
tree | e74f901a378c3bbf9548ffb08b0298a27cbd5b73 /.github/workflows | |
parent | 3bddc176d6d923492f4f2fda3c72227cd2b684f4 (diff) | |
parent | 9caf4bf38381f4ec0680a4b29ba26f9c1921fba0 (diff) | |
download | vaultwarden-5c5700caa72a4a4e38b98ebfdc42866185965d86.tar.gz vaultwarden-5c5700caa72a4a4e38b98ebfdc42866185965d86.zip |
Merge pull request #1565 from BlackDex/misc-updates
Misc changes.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 14 | ||||
-rw-r--r-- | .github/workflows/hadolint.yml | 3 |
2 files changed, 8 insertions, 9 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 81151f17..2c4d4620 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,23 +2,21 @@ name: Build on: push: - # Ignore when there are only changes done too one of these paths - paths-ignore: - - "**.md" - - "**.txt" - - "azure-pipelines.yml" - - "docker/**" - - "hooks/**" - - "tools/**" pull_request: # Ignore when there are only changes done too one of these paths paths-ignore: - "**.md" - "**.txt" + - ".dockerignore" + - ".env.template" + - ".gitattributes" + - ".gitignore" - "azure-pipelines.yml" - "docker/**" - "hooks/**" - "tools/**" + - ".github/FUNDING.yml" + - ".github/ISSUE_TEMPLATE/**" jobs: build: diff --git a/.github/workflows/hadolint.yml b/.github/workflows/hadolint.yml index 7b799554..f2cd9732 100644 --- a/.github/workflows/hadolint.yml +++ b/.github/workflows/hadolint.yml @@ -1,6 +1,7 @@ name: Hadolint on: + push: pull_request: # Ignore when there are only changes done too one of these paths paths: @@ -24,7 +25,7 @@ jobs: sudo curl -L https://github.com/hadolint/hadolint/releases/download/v$HADOLINT_VERSION/hadolint-$(uname -s)-$(uname -m) -o /usr/local/bin/hadolint && \ sudo chmod +x /usr/local/bin/hadolint env: - HADOLINT_VERSION: 1.19.0 + HADOLINT_VERSION: 2.0.0 # End Download hadolint # Test Dockerfiles |