Skip to content

Commit 2950b70

Browse files
Update CI tools (#4076)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 3c62363 commit 2950b70

File tree

9 files changed

+23
-23
lines changed

9 files changed

+23
-23
lines changed

.github/workflows/back-to-development.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Get GitHub app token
13-
uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
13+
uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
1414
id: app_token
1515
with:
1616
app-id: ${{ env.APP_ID }}

.github/workflows/buf-binary-size.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
- name: checkout
1818
uses: actions/checkout@v5
1919
- name: setup-go
20-
uses: actions/setup-go@v5
20+
uses: actions/setup-go@v6
2121
with:
22-
go-version: '1.24.x'
22+
go-version: '1.25.x'
2323
- name: cache
2424
uses: actions/cache@v4
2525
with:

.github/workflows/build-and-draft-release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
VERSION="${{ github.event.inputs.version || github.head_ref}}"
2121
echo "VERSION=${VERSION##*/v}" >> $GITHUB_ENV
2222
- name: Get GitHub app token
23-
uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
23+
uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
2424
id: app_token
2525
with:
2626
app-id: ${{ env.APP_ID }}
@@ -30,9 +30,9 @@ jobs:
3030
with:
3131
token: ${{ steps.app_token.outputs.token }}
3232
- name: Set up Go
33-
uses: actions/setup-go@v5
33+
uses: actions/setup-go@v6
3434
with:
35-
go-version: '1.24.x'
35+
go-version: '1.25.x'
3636
- name: Set up Git name and email
3737
run: |
3838
git config user.name "${{ github.actor }}"

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
- name: checkout
1818
uses: actions/checkout@v5
1919
- name: setup-go
20-
uses: actions/setup-go@v5
20+
uses: actions/setup-go@v6
2121
with:
22-
go-version: '1.24.x'
22+
go-version: '1.25.x'
2323
- name: cache
2424
uses: actions/cache@v4
2525
with:
@@ -53,9 +53,9 @@ jobs:
5353
- name: checkout
5454
uses: actions/checkout@v5
5555
- name: setup-go
56-
uses: actions/setup-go@v5
56+
uses: actions/setup-go@v6
5757
with:
58-
go-version: '1.24.x'
58+
go-version: '1.25.x'
5959
- name: cache
6060
uses: actions/cache@v4
6161
with:

.github/workflows/codeql.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ jobs:
1919
- name: checkout
2020
uses: actions/checkout@v5
2121
- name: setup-go
22-
uses: actions/setup-go@v5
22+
uses: actions/setup-go@v6
2323
with:
24-
go-version: '1.24.x'
24+
go-version: '1.25.x'
2525
- name: initialize
26-
uses: github/codeql-action/init@v3
26+
uses: github/codeql-action/init@v4
2727
with:
2828
# Limit analysis to Go for now.
2929
# Available languages: https://docs.github.com/en/code-security/secure-coding/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#changing-the-languages-that-are-analyzed
3030
languages: go
3131
- name: autobuild
32-
uses: github/codeql-action/autobuild@v3
32+
uses: github/codeql-action/autobuild@v4
3333
- name: analyze
34-
uses: github/codeql-action/analyze@v3
34+
uses: github/codeql-action/analyze@v4

.github/workflows/create-release-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Get GitHub app token
15-
uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
15+
uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
1616
id: app_token
1717
with:
1818
app-id: ${{ env.APP_ID }}

.github/workflows/make-upgrade.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Get GitHub app token
13-
uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
13+
uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
1414
id: app_token
1515
with:
1616
app-id: ${{ env.APP_ID }}
@@ -20,9 +20,9 @@ jobs:
2020
with:
2121
token: ${{ steps.app_token.outputs.token }}
2222
- name: setup-go
23-
uses: actions/setup-go@v5
23+
uses: actions/setup-go@v6
2424
with:
25-
go-version: '1.24.x'
25+
go-version: '1.25.x'
2626
cache: false
2727
- name: Set up Git name and email
2828
run: |

.github/workflows/previous.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
test-previous:
1515
strategy:
1616
matrix:
17-
go-version: ['1.23.x']
17+
go-version: ['1.24.x']
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: checkout
2121
uses: actions/checkout@v5
2222
- name: setup-go
23-
uses: actions/setup-go@v5
23+
uses: actions/setup-go@v6
2424
with:
2525
go-version: ${{ matrix.go-version }}
2626
- name: cache

.github/workflows/windows.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
- name: checkout
2525
uses: actions/checkout@v5
2626
- name: setup-go
27-
uses: actions/setup-go@v5
27+
uses: actions/setup-go@v6
2828
with:
29-
go-version: '1.24.x'
29+
go-version: '1.25.x'
3030
cache: true
3131
- name: windows-cache
3232
uses: actions/cache@v4

0 commit comments

Comments
 (0)