File tree Expand file tree Collapse file tree 7 files changed +20
-20
lines changed Expand file tree Collapse file tree 7 files changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -38,11 +38,11 @@ jobs:
3838
3939 steps :
4040 - name : Checkout repository
41- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
41+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4242
4343 # Initializes the CodeQL tools for scanning.
4444 - name : Initialize CodeQL
45- uses : github/codeql-action/init@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
45+ uses : github/codeql-action/init@f1f6e5f6af878fb37288ce1c627459e94dbf7d01 # v3.30.1
4646 with :
4747 languages : ${{ matrix.language }}
4848 # If you wish to specify custom queries, you can do so here or in a config file.
5353 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5454 # If this step fails, then you should remove it and run the build manually (see below)
5555 - name : Autobuild
56- uses : github/codeql-action/autobuild@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
56+ uses : github/codeql-action/autobuild@f1f6e5f6af878fb37288ce1c627459e94dbf7d01 # v3.30.1
5757
5858 # ℹ️ Command-line programs to run using the OS shell.
5959 # 📚 https://git.io/JvXDl
6767 # make release
6868
6969 - name : Perform CodeQL Analysis
70- uses : github/codeql-action/analyze@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
70+ uses : github/codeql-action/analyze@f1f6e5f6af878fb37288ce1c627459e94dbf7d01 # v3.30.1
Original file line number Diff line number Diff line change @@ -31,11 +31,11 @@ jobs:
3131 runs-on : ubuntu-latest
3232 steps :
3333 - name : Harden Runner
34- uses : step-security/harden-runner@6c439dc8bdf85cadbbce9ed30d1c7b959517bc49 # v2.12.2
34+ uses : step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
3535 with :
3636 egress-policy : audit # TODO: change to 'egress-policy: block' after couple of runs
3737
3838 - name : ' Checkout Repository'
39- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
39+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4040 - name : ' Dependency Review'
41- uses : actions/dependency-review-action@da24556b548a50705dd671f47852072ea4c105d9 # v4.7.1
41+ uses : actions/dependency-review-action@595b5aeba73380359d98a5e087f648dbb0edce1b # v4.7.3
Original file line number Diff line number Diff line change 1616 runs-on : ubuntu-latest
1717
1818 steps :
19- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
19+ - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2020 - name : Build the Docker image
2121 run : docker build . --file Dockerfile
Original file line number Diff line number Diff line change @@ -22,17 +22,17 @@ jobs:
2222
2323 steps :
2424 - name : Checkout repository
25- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
25+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2626 - name : Log in to the Container registry
27- uses : docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4 .0
27+ uses : docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5 .0
2828 with :
2929 registry : ${{ env.REGISTRY }}
3030 username : ${{ github.actor }}
3131 password : ${{ secrets.GITHUB_TOKEN }}
3232
3333 - name : Extract metadata (tags, labels) for Docker
3434 id : meta
35- uses : docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7 .0
35+ uses : docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # v5.8 .0
3636 with :
3737 images : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
3838 # pushes to the default branch get labeled latest, otherwise use tag name
5050 labels : ${{ steps.meta.outputs.labels }}
5151
5252 - name : Generate artifact attestation
53- uses : actions/attest-build-provenance@e8998f949152b193b063cb0ec769d69d929409be # v2.4 .0
53+ uses : actions/attest-build-provenance@977bb373ede98d70efdf65b84cb5f73e068dcc2a # v3.0 .0
5454 # only publish attestation for our release builds
5555 if : startsWith(github.ref, 'refs/tags/v')
5656 with :
Original file line number Diff line number Diff line change 1616 matrix :
1717 os : [ ubuntu-latest ]
1818 steps :
19- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
20- - uses : actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5 .0
19+ - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
20+ - uses : actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0 .0
2121 with :
2222 go-version-file : go.mod
2323 cache : false # golangci/golangci-lint-action maintains its own cache
Original file line number Diff line number Diff line change 1616
1717 steps :
1818 - name : " Checkout code"
19- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
19+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2020 with :
2121 persist-credentials : false
2222
3939
4040 # Upload the results to GitHub's code scanning dashboard.
4141 - name : " Upload to code-scanning"
42- uses : github/codeql-action/upload-sarif@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
42+ uses : github/codeql-action/upload-sarif@f1f6e5f6af878fb37288ce1c627459e94dbf7d01 # v3.30.1
4343 with :
4444 sarif_file : results.sarif
Original file line number Diff line number Diff line change 1717 permissions :
1818 id-token : write # Needed to pick up on signing with a GitHub workflow identity.
1919 steps :
20- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
21- - uses : actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5 .0
20+ - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
21+ - uses : actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0 .0
2222 with :
2323 go-version-file : go.mod
2424 cache : true
3838 matrix :
3939 os : [ ubuntu-latest ]
4040 steps :
41- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
42- - uses : actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5 .0
41+ - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
42+ - uses : actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0 .0
4343 with :
4444 go-version-file : go.mod
4545 cache : true
You can’t perform that action at this time.
0 commit comments