File tree Expand file tree Collapse file tree 7 files changed +16
-16
lines changed
Expand file tree Collapse file tree 7 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 4444
4545 # Initializes the CodeQL tools for scanning.
4646 - name : Initialize CodeQL
47- uses : github/codeql-action/init@a09933a12a80f87b87005513f0abb1494c27a716 # v2.21.4
47+ uses : github/codeql-action/init@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.21.5
4848 with :
4949 languages : ${{ matrix.language }}
5050 # If you wish to specify custom queries, you can do so here or in a config file.
5555 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5656 # If this step fails, then you should remove it and run the build manually (see below)
5757 - name : Autobuild
58- uses : github/codeql-action/autobuild@a09933a12a80f87b87005513f0abb1494c27a716 # v2.21.4
58+ uses : github/codeql-action/autobuild@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.21.5
5959
6060 # ℹ️ Command-line programs to run using the OS shell.
6161 # 📚 https://git.io/JvXDl
6969 # make release
7070
7171 - name : Perform CodeQL Analysis
72- uses : github/codeql-action/analyze@a09933a12a80f87b87005513f0abb1494c27a716 # v2.21.4
72+ uses : github/codeql-action/analyze@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.21.5
Original file line number Diff line number Diff line change 3434 - name : Run Lints
3535 uses : ./.github/workflows/lint-action
3636 - uses : docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2
37- - uses : docker/setup-buildx-action@4c0219f9ac95b02789c1075625400b2acbff50b1 # v2
37+ - uses : docker/setup-buildx-action@885d1462b80bc1c1c7f0b00334ad271f09369c55 # v2
3838 - name : ghcr-login
3939 uses : docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2
4040 with :
4343 password : ${{ secrets.GITHUB_TOKEN }}
4444 - name : Run GoReleaser
4545 id : run-goreleaser
46- uses : goreleaser/goreleaser-action@336e29918d653399e599bfca99fadc1d7ffbc9f7 # v4.3 .0
46+ uses : goreleaser/goreleaser-action@5fdedb94abba051217030cc86d4523cf3f02243d # v4.6 .0
4747 with :
4848 version : latest
4949 args : release --rm-dist
6363 actions : read # To read the workflow path.
6464 id-token : write # To sign the provenance.
6565 contents : write # To add assets to a release.
66- uses : slsa-framework/slsa-github-generator/.github/workflows/generator_generic_slsa3.yml@v1.8 .0
66+ uses : slsa-framework/slsa-github-generator/.github/workflows/generator_generic_slsa3.yml@v1.9 .0
6767 with :
6868 base64-subjects : " ${{ needs.goreleaser.outputs.hashes }}"
6969 upload-assets : true # upload to a new release
Original file line number Diff line number Diff line change 88 runs-on : ubuntu-latest
99 steps :
1010 - uses : actions/checkout@master
11- - uses : gaurav-nelson/github-action-markdown-link-check@46e442156b8161bfd0913357c7a411e0e610d2ad
11+ - uses : gaurav-nelson/github-action-markdown-link-check@a996638015fbc9ef96beef1a41bbad7df8e06154
1212 with :
1313 use-quiet-mode : " yes"
1414 base-branch : " main"
Original file line number Diff line number Diff line change 1010 runs-on : ubuntu-latest
1111 steps :
1212 - uses : actions/checkout@master
13- - uses : gaurav-nelson/github-action-markdown-link-check@46e442156b8161bfd0913357c7a411e0e610d2ad
13+ - uses : gaurav-nelson/github-action-markdown-link-check@a996638015fbc9ef96beef1a41bbad7df8e06154
1414 with :
1515 use-quiet-mode : " yes"
1616# Documentation available here: https://github.com/marketplace/actions/markdown-link-check
Original file line number Diff line number Diff line change @@ -54,29 +54,29 @@ jobs:
5454 # format to the repository Actions tab.
5555 - name : " Upload artifact"
5656 if : ' !cancelled()'
57- uses : actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
57+ uses : actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
5858 with :
5959 name : SARIF file
6060 path : final-results.sarif
6161 retention-days : 5
6262 - name : " Upload old scan json results"
6363 if : ' !cancelled()'
64- uses : actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
64+ uses : actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
6565 with :
6666 name : old-json-results
6767 path : old-results.json
6868 retention-days : 5
6969 - name : " Upload new scan json results"
7070 if : ' !cancelled()'
71- uses : actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
71+ uses : actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
7272 with :
7373 name : new-json-results
7474 path : new-results.json
7575 retention-days : 5
7676 # Upload the results to GitHub's code scanning dashboard.
7777 - name : " Upload to code-scanning"
7878 if : ' !cancelled()'
79- uses : github/codeql-action/upload-sarif@a09933a12a80f87b87005513f0abb1494c27a716 # v2.21.4
79+ uses : github/codeql-action/upload-sarif@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.21.5
8080 with :
8181 sarif_file : final-results.sarif
8282
Original file line number Diff line number Diff line change @@ -33,15 +33,15 @@ jobs:
3333 # format to the repository Actions tab.
3434 - name : " Upload artifact"
3535 if : ' !cancelled()'
36- uses : actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
36+ uses : actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
3737 with :
3838 name : SARIF file
3939 path : results.sarif
4040 retention-days : 5
4141 # Upload the results to GitHub's code scanning dashboard.
4242 - name : " Upload to code-scanning"
4343 if : ' !cancelled()'
44- uses : github/codeql-action/upload-sarif@a09933a12a80f87b87005513f0abb1494c27a716 # v2.21.4
44+ uses : github/codeql-action/upload-sarif@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.21.5
4545 with :
4646 sarif_file : results.sarif
4747
Original file line number Diff line number Diff line change @@ -59,14 +59,14 @@ jobs:
5959 # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6060 # format to the repository Actions tab.
6161 - name : " Upload artifact"
62- uses : actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
62+ uses : actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
6363 with :
6464 name : SARIF file
6565 path : results.sarif
6666 retention-days : 5
6767
6868 # Upload the results to GitHub's code scanning dashboard.
6969 - name : " Upload to code-scanning"
70- uses : github/codeql-action/upload-sarif@a09933a12a80f87b87005513f0abb1494c27a716 # v2.21.4
70+ uses : github/codeql-action/upload-sarif@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.21.5
7171 with :
7272 sarif_file : results.sarif
You can’t perform that action at this time.
0 commit comments