File tree 7 files changed +15
-15
lines changed
7 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 36
36
uses : docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
37
37
38
38
- name : Set up Docker Buildx
39
- uses : docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
39
+ uses : docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
40
40
41
41
# ######### Login to Docker registries ##########
42
42
- name : Login to Azure - Prod Subscription
91
91
92
92
- name : Build and push Docker image
93
93
id : build-docker
94
- uses : docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9 .0
94
+ uses : docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10 .0
95
95
with :
96
96
context : .
97
97
file : crates/bws/Dockerfile
@@ -122,14 +122,14 @@ jobs:
122
122
123
123
- name : Scan Docker image
124
124
id : container-scan
125
- uses : anchore/scan-action@5ed195cc06065322983cae4bb31e2a751feb86fd # v5.2 .0
125
+ uses : anchore/scan-action@869c549e657a088dc0441b08ce4fc0ecdac2bb65 # v5.3 .0
126
126
with :
127
127
image : ${{ steps.tag-list.outputs.primary_tag }}
128
128
fail-build : false
129
129
output-format : sarif
130
130
131
131
- name : Upload Grype results to GitHub
132
- uses : github/codeql-action/upload-sarif@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
132
+ uses : github/codeql-action/upload-sarif@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9
133
133
with :
134
134
sarif_file : ${{ steps.container-scan.outputs.sarif }}
135
135
Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ jobs:
22
22
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23
23
24
24
- name : Setup Go environment
25
- uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1 .0
25
+ uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2 .0
26
26
with :
27
27
go-version : ${{ env.GO_VERSION }}
28
28
29
29
- name : Cache dependencies
30
- uses : actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
30
+ uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
31
31
with :
32
32
path : ~/go/pkg/mod
33
33
key : ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
Original file line number Diff line number Diff line change 16
16
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
17
17
18
18
- name : Set up Ruby
19
- uses : ruby/setup-ruby@7bae1d00b5db9166f4f0fc47985a3a5702cb58f0 # v1.197 .0
19
+ uses : ruby/setup-ruby@401c19e14f474b54450cd3905bb8b86e2c8509cf # v1.204 .0
20
20
with :
21
21
ruby-version : 3.2
22
22
Original file line number Diff line number Diff line change 45
45
RUSTFLAGS : " -D warnings"
46
46
47
47
- name : Upload Clippy results to GitHub
48
- uses : github/codeql-action/upload-sarif@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
48
+ uses : github/codeql-action/upload-sarif@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9
49
49
with :
50
50
sarif_file : clippy_result.sarif
51
51
Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ jobs:
145
145
uses : docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
146
146
147
147
- name : Set up Docker Buildx
148
- uses : docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
148
+ uses : docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
149
149
150
150
# ######### Login to Docker registries ##########
151
151
- name : Login to Azure - Prod Subscription
@@ -176,7 +176,7 @@ jobs:
176
176
177
177
- name : Build and push Docker image
178
178
id : build-docker
179
- uses : docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9 .0
179
+ uses : docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10 .0
180
180
with :
181
181
context : .
182
182
file : crates/bws/Dockerfile
@@ -205,14 +205,14 @@ jobs:
205
205
206
206
- name : Scan Docker image
207
207
id : container-scan
208
- uses : anchore/scan-action@5ed195cc06065322983cae4bb31e2a751feb86fd # v5.2 .0
208
+ uses : anchore/scan-action@869c549e657a088dc0441b08ce4fc0ecdac2bb65 # v5.3 .0
209
209
with :
210
210
image : ${{ steps.tag-list.outputs.primary_tag }}
211
211
fail-build : false
212
212
output-format : sarif
213
213
214
214
- name : Upload Grype results to GitHub
215
- uses : github/codeql-action/upload-sarif@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
215
+ uses : github/codeql-action/upload-sarif@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9
216
216
with :
217
217
sarif_file : ${{ steps.container-scan.outputs.sarif }}
218
218
Original file line number Diff line number Diff line change 92
92
java-version : 17
93
93
94
94
- name : Setup Gradle
95
- uses : gradle/actions/setup-gradle@d156388eb19639ec20ade50009f3d199ce1e2808 # v4.1.0
95
+ uses : gradle/actions/setup-gradle@cc4fc85e6b35bafd578d5ffbc76a5518407e1af0 # v4.2.1
96
96
97
97
- name : Download Java SDK Build
98
98
uses : bitwarden/gh-actions/download-artifacts@main
Original file line number Diff line number Diff line change 31
31
ref : ${{ github.event.pull_request.head.sha }}
32
32
33
33
- name : Scan with Checkmarx
34
- uses : checkmarx/ast-github-action@f0869bd1a37fddc06499a096101e6c900e815d81 # 2.0.36
34
+ uses : checkmarx/ast-github-action@b74e8d514feae4ad5ad2b43e72590935bd2daf5f # 2.0.39
35
35
env :
36
36
INCREMENTAL : " ${{ contains(github.event_name, 'pull_request') && '--sast-incremental' || '' }}"
37
37
with :
46
46
--output-path . ${{ env.INCREMENTAL }}
47
47
48
48
- name : Upload Checkmarx results to GitHub
49
- uses : github/codeql-action/upload-sarif@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
49
+ uses : github/codeql-action/upload-sarif@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9
50
50
with :
51
51
sarif_file : cx_result.sarif
52
52
You can’t perform that action at this time.
0 commit comments