Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump github/codeql-action from 2 to 3 in /.github/workflows #477

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/consul-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
on:
pull_request:
paths:
- 'pipelines/dockerfiles/consul-template/**'

Check failure on line 9 in .github/workflows/consul-template.yml

View workflow job for this annotation

GitHub Actions / pre-commit

9:9 [quoted-strings] string value is redundantly quoted with double quotes
- .github/workflows/consul-template.yml
branches: [ master ]

push:
paths:
- 'pipelines/dockerfiles/consul-template/**'

Check failure on line 15 in .github/workflows/consul-template.yml

View workflow job for this annotation

GitHub Actions / pre-commit

15:9 [quoted-strings] string value is redundantly quoted with double quotes
- .github/workflows/consul-template.yml

workflow_dispatch:
Expand Down Expand Up @@ -49,7 +49,7 @@
output: 'trivy-results.sarif'

- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
uses: github/codeql-action/upload-sarif@v3
if: always()
with:
sarif_file: 'trivy-results.sarif'
Expand All @@ -76,6 +76,6 @@
soft_fail: true

- name: Upload Checkov results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'checkov-results.sarif'
4 changes: 2 additions & 2 deletions .github/workflows/docker-nginx-proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
on:
pull_request:
paths:
- 'pipelines/dockerfiles/docker-nginx-proxy/**'

Check failure on line 8 in .github/workflows/docker-nginx-proxy.yml

View workflow job for this annotation

GitHub Actions / pre-commit

8:9 [quoted-strings] string value is redundantly quoted with double quotes
- .github/workflows/docker-nginx-proxy.yml
branches: [ master ]

push:
paths:
- 'pipelines/dockerfiles/docker-nginx-proxy/**'

Check failure on line 14 in .github/workflows/docker-nginx-proxy.yml

View workflow job for this annotation

GitHub Actions / pre-commit

14:9 [quoted-strings] string value is redundantly quoted with double quotes
- .github/workflows/docker-nginx-proxy.yml

workflow_dispatch:
Expand Down Expand Up @@ -43,15 +43,15 @@
- name: Run trivy scan
uses: aquasecurity/[email protected]
with:
image-ref: 'docker.io/constantin07/docker-nginx-proxy:latest'

Check failure on line 46 in .github/workflows/docker-nginx-proxy.yml

View workflow job for this annotation

GitHub Actions / pre-commit

46:22 [quoted-strings] string value is redundantly quoted with double quotes
security-checks: 'vuln,secret,config'

Check failure on line 47 in .github/workflows/docker-nginx-proxy.yml

View workflow job for this annotation

GitHub Actions / pre-commit

47:28 [quoted-strings] string value is redundantly quoted with double quotes
format: 'sarif'

Check failure on line 48 in .github/workflows/docker-nginx-proxy.yml

View workflow job for this annotation

GitHub Actions / pre-commit

48:19 [quoted-strings] string value is redundantly quoted with double quotes
output: 'trivy-results.sarif'

Check failure on line 49 in .github/workflows/docker-nginx-proxy.yml

View workflow job for this annotation

GitHub Actions / pre-commit

49:19 [quoted-strings] string value is redundantly quoted with double quotes

- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'trivy-results.sarif'

Check failure on line 54 in .github/workflows/docker-nginx-proxy.yml

View workflow job for this annotation

GitHub Actions / pre-commit

54:23 [quoted-strings] string value is redundantly quoted with double quotes

- name: Docker push
run: make push
Expand All @@ -75,6 +75,6 @@
soft_fail: true

- name: Upload Checkov results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'checkov-results.sarif'

Check failure on line 80 in .github/workflows/docker-nginx-proxy.yml

View workflow job for this annotation

GitHub Actions / pre-commit

80:23 [quoted-strings] string value is redundantly quoted with double quotes
4 changes: 2 additions & 2 deletions .github/workflows/golang-terratest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
output: 'trivy-results.sarif'

- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
uses: github/codeql-action/upload-sarif@v3
if: always()
with:
sarif_file: 'trivy-results.sarif'
Expand All @@ -73,6 +73,6 @@ jobs:
soft_fail: true

- name: Upload Checkov results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'checkov-results.sarif'
2 changes: 1 addition & 1 deletion .github/workflows/tool-box.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
output: 'trivy-results.sarif'

- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'trivy-results.sarif'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vault.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
output: 'trivy-results.sarif'

- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2.20.0
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'trivy-results.sarif'

Expand Down
Loading