Skip to content

Commit 1f4db6a

Browse files
authored
Merge branch 'main' into fix-square-brackets
2 parents 8bdd00e + 244ba00 commit 1f4db6a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Diff for: .github/workflows/codeql-analysis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1414

1515
- name: Initialize CodeQL
16-
uses: github/codeql-action/init@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3
16+
uses: github/codeql-action/init@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3
1717
with:
1818
languages: go
1919

2020
- name: Autobuild
21-
uses: github/codeql-action/autobuild@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3
21+
uses: github/codeql-action/autobuild@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3
2222

2323
- name: Perform CodeQL Analysis
24-
uses: github/codeql-action/analyze@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3
24+
uses: github/codeql-action/analyze@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3

Diff for: .github/workflows/regression.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,28 +48,28 @@ jobs:
4848
export BUILD_TAGS=${{ matrix.build-flag }}
4949
go run mage.go coverage
5050
- name: "Codecov: General"
51-
uses: codecov/codecov-action@985343d70564a82044c1b7fcb84c2fa05405c1a2 # v5
51+
uses: codecov/codecov-action@015f24e6818733317a2da2edd6290ab26238649a # v5
5252
if: ${{ matrix.go-version == '1.22.x' }}
5353
with:
5454
files: build/coverage.txt
5555
flags: default,${{ matrix.build-flag }}
5656
token: ${{ secrets.CODECOV_TOKEN }}
5757
- name: "Codecov: Examples"
58-
uses: codecov/codecov-action@985343d70564a82044c1b7fcb84c2fa05405c1a2 # v5
58+
uses: codecov/codecov-action@015f24e6818733317a2da2edd6290ab26238649a # v5
5959
if: ${{ matrix.go-version == '1.22.x' }}
6060
with:
6161
files: build/coverage-examples.txt
6262
flags: examples+${{ matrix.build-flag }}
6363
token: ${{ secrets.CODECOV_TOKEN }}
6464
- name: "Codecov: FTW"
65-
uses: codecov/codecov-action@985343d70564a82044c1b7fcb84c2fa05405c1a2 # v5
65+
uses: codecov/codecov-action@015f24e6818733317a2da2edd6290ab26238649a # v5
6666
if: ${{ matrix.go-version == '1.22.x' }}
6767
with:
6868
files: build/coverage-ftw.txt
6969
flags: ftw,${{ matrix.build-flag }}
7070
token: ${{ secrets.CODECOV_TOKEN }}
7171
- name: "Codecov: Tinygo"
72-
uses: codecov/codecov-action@985343d70564a82044c1b7fcb84c2fa05405c1a2 # v5
72+
uses: codecov/codecov-action@015f24e6818733317a2da2edd6290ab26238649a # v5
7373
# only if coverage-tinygo.txt exists
7474
if: ${{ matrix.go-version == '1.22.x' && hashFiles('build/coverage-tinygo.txt') != '' }}
7575
with:

0 commit comments

Comments
 (0)