File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed
Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -533,7 +533,7 @@ jobs:
533533 outputs : type=oci,dest=/tmp/${{ env.UNIQUE_TAG }}.tar
534534
535535 - name : Upload artifact
536- uses : actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5 .0
536+ uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6 .0
537537 with :
538538 name : containers-${{ env.APPLICATION_NAME }}
539539 path : /tmp/${{ env.UNIQUE_TAG }}.tar
@@ -580,6 +580,9 @@ jobs:
580580 run : |
581581 echo "IMAGE_NAME=${IMAGE_NAME,,}" >> ${GITHUB_ENV}
582582
583+ - name : Ensure we have oras
584+ uses : oras-project/setup-oras@9c92598691bfef1424de2f8fae81941568f5889c # v1.2.1
585+
583586 - name : Load images from artifacts
584587 shell : bash
585588 id : image
Original file line number Diff line number Diff line change 3636 - name : Upload SARIF file for GitHub Advanced Security Dashboard
3737 if : |
3838 always()
39- uses : github/codeql-action/upload-sarif@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
39+ uses : github/codeql-action/upload-sarif@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
4040 with :
4141 sarif_file : semgrep.sarif
Original file line number Diff line number Diff line change @@ -14,8 +14,15 @@ repository = "https://github.com/kristof-mattei/rust-seed"
1414[lints .clippy ]
1515# don't stop from compiling / running
1616all = " warn"
17- pedantic = " warn"
1817cargo = " warn"
18+ complexity = " warn"
19+ correctness = " warn"
20+ pedantic = " warn"
21+ perf = " warn"
22+ # restriction = "warn"
23+ style = " warn"
24+ suspicious = " warn"
25+
1926# this one causes confusion when combining variables (`foo`) and
2027# dereferenced variables (`foo.bar`). The latter cannot be inlined
2128# so we don't inline anything
You can’t perform that action at this time.
0 commit comments