Skip to content

Commit 25608b0

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/upload-artifact-5
2 parents 54ebd58 + 423123f commit 25608b0

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: Build
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020
- name: Setup go
2121
uses: actions/setup-go@v5
2222
with:
@@ -27,7 +27,7 @@ jobs:
2727
name: Tidy
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v6
3131
- name: Setup go
3232
uses: actions/setup-go@v5
3333
with:

.github/workflows/e2e-testing.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ jobs:
6363
path: ${{ env.TAR_PATH }}
6464

6565
- name: Setup Go with cache
66-
uses: magnetikonline/action-golang-cache@v4
66+
uses: magnetikonline/action-golang-cache@v5
6767
with:
6868
go-version: 1.23
6969
id: go
7070

7171
- name: Checkout repository
72-
uses: actions/checkout@v4
72+
uses: actions/checkout@v6
7373

7474
- name: Download dependencies for interchaintest
7575
run: |
@@ -111,13 +111,13 @@ jobs:
111111
echo "Found image ID: $IMAGE_ID — tagging as persistence:local"
112112
docker tag "$IMAGE_ID" persistence:local
113113
- name: Setup Go with cache
114-
uses: magnetikonline/action-golang-cache@v4
114+
uses: magnetikonline/action-golang-cache@v5
115115
with:
116116
go-version: 1.23
117117
id: go
118118

119119
- name: Checkout repository
120-
uses: actions/checkout@v4
120+
uses: actions/checkout@v6
121121

122122
- name: run test
123123
run: make ${{ matrix.test }}

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: golangci-lint
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616

1717
- uses: technote-space/get-diff-action@v4
1818
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Check out the repo
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717

1818
- name: Set up QEMU
1919
uses: docker/setup-qemu-action@v1
@@ -27,7 +27,7 @@ jobs:
2727
make release-sha
2828
2929
- name: attach binaries
30-
uses: softprops/action-gh-release@v1
30+
uses: softprops/action-gh-release@v2
3131
with:
3232
tag_name: ${{ steps.tag.outputs.release_tag }}
3333
files: release/*

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
go-version: "1.25"
3737

38-
- uses: actions/checkout@v5
38+
- uses: actions/checkout@v6
3939

4040
- name: Unit Tests
4141
run: |

0 commit comments

Comments
 (0)