Skip to content

Commit

Permalink
Merge pull request #35 from metalbear-co/update-go-in-e2e
Browse files Browse the repository at this point in the history
Updated go version in e2e setup
  • Loading branch information
Razz4780 authored Aug 16, 2024
2 parents 5411527 + b252a71 commit 12f5ccf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions e2e-setup-action/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,34 +34,34 @@ runs:
shell: bash
- uses: actions/setup-go@v3
with:
go-version: "1.19"
go-version: "1.21"
cache-dependency-path: tests/go-e2e/go.sum
- run: |
go version
shell: bash
- run: | # Build Go test apps.
./scripts/build_go_apps.sh 19
./scripts/build_go_apps.sh 21
shell: bash
# don't use "cache" for other Gos since it will try to overwrite and have bad results.
- uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: "1.22"
cache: false
- run: |
go version
shell: bash
- run: | # Build Go test apps.
./scripts/build_go_apps.sh 20
./scripts/build_go_apps.sh 22
shell: bash
- uses: actions/setup-go@v4
with:
go-version: "1.21"
go-version: "1.23"
cache: false
- run: |
go version
shell: bash
- run: | # Build Go test apps.
./scripts/build_go_apps.sh 21
./scripts/build_go_apps.sh 23
shell: bash
- name: Build Rust test apps
run: |
Expand Down

0 comments on commit 12f5ccf

Please sign in to comment.