Skip to content

Commit a905148

Browse files
authored
Merge branch 'main' into chore/rm-params
2 parents 90e1caf + a15ac0b commit a905148

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+1851
-277
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@v6
2424
- uses: actions/setup-go@v6
2525
with:
26-
go-version: "1.25"
26+
go-version: "1.25.5"
2727
check-latest: true
2828
- name: install aarch64-gcc
2929
if: matrix.go-arch == 'arm64'

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: actions/checkout@v6
3030
- uses: actions/setup-go@v6
3131
with:
32-
go-version: "1.25"
32+
go-version: "1.25.5"
3333
check-latest: true
3434
# Initializes the CodeQL tools for scanning.
3535
- name: Initialize CodeQL

.github/workflows/dependabot-update-all.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
if: ${{ github.actor == 'dependabot[bot]' }}
1515
steps:
1616
- name: Generate Token
17-
uses: actions/create-github-app-token@7e473efe3cb98aa54f8d4bac15400b15fad77d94 # v1
17+
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v1
1818
id: app-token
1919
with:
2020
app-id: "${{ secrets.APP_ID }}"
@@ -26,7 +26,7 @@ jobs:
2626
token: "${{ steps.app-token.outputs.token }}"
2727
- uses: actions/setup-go@v6
2828
with:
29-
go-version: "1.25"
29+
go-version: "1.25.5"
3030
check-latest: true
3131
- name: Extract updated dependency
3232
id: deps

.github/workflows/dependencies-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: "Setup Go"
1616
uses: actions/setup-go@v6
1717
with:
18-
go-version: "1.25"
18+
go-version: "1.25.5"
1919
check-latest: true
2020
- name: "Dependency Review"
2121
uses: actions/dependency-review-action@v4

.github/workflows/docker.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
permissions:
2323
contents: read
2424
packages: write
25-
sid-token: write
25+
id-token: write
2626

2727
env:
2828
# Use docker.io for Docker Hub if empty
@@ -71,5 +71,3 @@ jobs:
7171
platforms: linux/amd64,linux/arm64
7272
push: ${{ github.event_name != 'pull_request' }}
7373
tags: ${{ steps.meta.outputs.tags }}
74-
cache-from: type=gha
75-
cache-to: type=gha,mode=max

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v6
1818
- uses: actions/setup-go@v6
1919
with:
20-
go-version: "1.25"
20+
go-version: "1.25.5"
2121
check-latest: true
2222
- uses: technote-space/[email protected]
2323
id: git_diff

.github/workflows/pr-go-mod-tidy-mocks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Go
2121
uses: actions/setup-go@v6
2222
with:
23-
go-version: "1.25"
23+
go-version: "1.25.5"
2424
check-latest: true
2525
- name: Run go mod tidy
2626
run: ./scripts/go-mod-tidy-all.sh
@@ -40,7 +40,7 @@ jobs:
4040
- name: Set up Go
4141
uses: actions/setup-go@v6
4242
with:
43-
go-version: "1.25"
43+
go-version: "1.25.5"
4444
check-latest: true
4545
- name: Generate mocks
4646
run: make mocks

.github/workflows/release-confix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v6
1717
- uses: actions/setup-go@v6
1818
with:
19-
go-version: "1.25"
19+
go-version: "1.25.5"
2020
check-latest: true
2121
# get 'v*.*.*' part from 'confix/v*.*.*' and save to $GITHUB_ENV
2222
- name: Set env

.github/workflows/release-cosmovisor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v6
1717
- uses: actions/setup-go@v6
1818
with:
19-
go-version: "1.25"
19+
go-version: "1.25.5"
2020
check-latest: true
2121
# get 'v*.*.*' part from 'cosmovisor/v*.*.*' and save to $GITHUB_ENV
2222
- name: Set env

.github/workflows/release-simd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v6
1717
- uses: actions/setup-go@v6
1818
with:
19-
go-version: "1.25"
19+
go-version: "1.25.5"
2020
check-latest: true
2121
# get 'v*.*.*' part from 'simd/v*.*.*' and save to $GITHUB_ENV
2222
- name: Set env

0 commit comments

Comments
 (0)