Skip to content

Commit

Permalink
ci: update go versions
Browse files Browse the repository at this point in the history
  • Loading branch information
snobbee committed Jun 13, 2024
1 parent d4fbc30 commit 03a5ae9
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.19
- name: Set up Go 1.21
uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.21
- uses: actions/checkout@v3
- name: Build
run: make install
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integrationtest1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8.10'
python-version: "3.8.10"
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 'v16.20.2'
node-version: "v16.20.2"
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.18.10'
go-version: "1.21"
- name: Set up linux environment
run: # installs development tools and updates .bash_profile
bash test/integration/setup-linux-environment.sh
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integrationtest2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8.10'
python-version: "3.8.10"
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 'v16.20.2'
node-version: "v16.20.2"
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.18.10'
go-version: "1.21"
- name: Set up linux environment
run: # installs development tools and updates .bash_profile
bash test/integration/setup-linux-environment.sh
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integrationtest3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8.10'
python-version: "3.8.10"
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 'v16.20.2'
node-version: "v16.20.2"
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.18.10'
go-version: "1.21"
- name: Set up linux environment
run: # installs development tools and updates .bash_profile
bash test/integration/setup-linux-environment.sh
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.19
- name: Set up Go 1.21
uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.21
- name: Set GOROOT (fix for https://github.com/golangci/golangci-lint/issues/3107)
run: echo "GOROOT=$(go env GOROOT)" >> $GITHUB_ENV
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/localnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: ^1.15
go-version: 1.21
id: go
- uses: actions/setup-node@v2
with:
Expand Down

0 comments on commit 03a5ae9

Please sign in to comment.