Skip to content

Commit c1c2a2b

Browse files
committed
use Go version from go mod
1 parent 5618e75 commit c1c2a2b

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/linters.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ jobs:
2424
- tools/gotestloghelper
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2828
- name: Install Devbox
2929
uses: jetify-com/[email protected]
3030
with:
3131
enable-cache: 'true'
3232
- name: Setup Go
3333
uses: actions/setup-go@v5
3434
with:
35-
go-version: 'v1.24.0'
35+
go-version-file: ${{ matrix.dir }}/go.mod
3636
- uses: extractions/setup-just@v2
3737
with:
3838
just-version: '1.39.0'

.github/workflows/release-go-module.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: Release multi-platform
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626
with:
2727
fetch-depth: 0
2828
fetch-tags: true

.github/workflows/seth-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
working-directory: seth
5353
runs-on: ubuntu-latest
5454
steps:
55-
- uses: actions/checkout@v3
55+
- uses: actions/checkout@v4
5656
- name: Check for changes in Framework
5757
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
5858
id: changes
@@ -67,7 +67,7 @@ jobs:
6767
- name: Set up Go
6868
uses: actions/setup-go@v5
6969
with:
70-
go-version: '1.24.0'
70+
go-version-file: seth/go.mod
7171
- name: Cache Go modules
7272
uses: actions/cache@v4
7373
with:

.github/workflows/test-makefile.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup Go
2323
uses: actions/setup-go@v5
2424
with:
25-
go-version: 'v1.24.0'
25+
go-version-file: ${{ matrix.project.path }}/go.mod
2626
- name: Install gotestloghelper
2727
run: go install github.com/smartcontractkit/chainlink-testing-framework/tools/gotestloghelper@latest
2828
- name: Run Tests

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
- name: Set up Go
6565
uses: actions/setup-go@v5
6666
with:
67-
go-version: '1.24.0'
67+
go-version-file: ${{ matrix.test.path }}/go.mod
6868
- name: Install dependencies
6969
working-directory: ${{ matrix.test.path }}
7070
run: go mod download

0 commit comments

Comments
 (0)