diff options
author | Valery Piashchynski <[email protected]> | 2022-07-18 15:34:06 +0200 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-07-18 15:34:06 +0200 |
commit | dc7a4c54357ae5d99f5251bdc40d2bf0adc9e2d4 (patch) | |
tree | 7f6cafe548c62e6e57a0e312de13a7cc7eb575f1 /.github | |
parent | 59bcfac550d2568a200473b6f1ea8faf6cf62d3b (diff) |
go.mod: update dependencies
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/tests.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b8c1ace6..d087ee4e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,10 +6,10 @@ on: - master - stable paths-ignore: - - '**.md' + - "**.md" pull_request: paths-ignore: - - '**.md' + - "**.md" jobs: validate-config-file: @@ -22,7 +22,7 @@ jobs: - name: Setup nodejs uses: actions/setup-node@v3 with: - node-version: '14' + node-version: "14" - name: Install linter run: npm install -g ajv-cli # Package page: <https://www.npmjs.com/package/ajv-cli> @@ -45,7 +45,7 @@ jobs: - name: Run linter uses: golangci/[email protected] with: - version: v1.46 # without patch version + version: v1.47 # without patch version only-new-issues: false # show only new issues if it's a pull request args: --build-tags=safe --timeout=10m @@ -154,6 +154,6 @@ jobs: - uses: aquasecurity/[email protected] # action page: <https://github.com/aquasecurity/trivy-action> with: image-ref: rr:local - format: 'table' + format: "table" severity: MEDIUM,HIGH,CRITICAL exit-code: 1 |