Skip to content

Commit

Permalink
Fix versions check failure (#479)
Browse files Browse the repository at this point in the history
* Update to latest Go versions

* Updated versions

* Update test data

* Update test data
  • Loading branch information
HarithaVattikuti committed May 10, 2024
1 parent cdcb360 commit 4ab57d7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/versions.yml
Expand Up @@ -71,7 +71,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
go: [1.17, 1.18, 1.19]
go: [1.20.14, 1.21.10, 1.22.3]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -91,7 +91,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
go-version: [1.16, 1.17]
go-version: [1.20.14, 1.21]
steps:
- uses: actions/checkout@v4
- name: Setup Go and check latest
Expand All @@ -115,7 +115,7 @@ jobs:
with:
go-version-file: __tests__/data/go.mod
- name: verify go
run: __tests__/verify-go.sh 1.14
run: __tests__/verify-go.sh 1.20.14
shell: bash

go-version-file-with-gowork:
Expand All @@ -131,7 +131,7 @@ jobs:
with:
go-version-file: __tests__/data/go.work
- name: verify go
run: __tests__/verify-go.sh 1.19
run: __tests__/verify-go.sh 1.21
shell: bash

setup-versions-from-manifest:
Expand All @@ -141,7 +141,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
go: [1.12.16, 1.13.11, 1.14.3]
go: [1.20.14, 1.21.10, 1.22.3]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -162,7 +162,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
go: [1.9, 1.8.6]
go: [1.20.14, 1.21]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -182,7 +182,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
go-version: [1.16, 1.17]
go-version: [1.20.14, 1.21]
steps:
- uses: actions/checkout@v4
- name: Setup Go and check latest
Expand Down
2 changes: 1 addition & 1 deletion __tests__/data/go.mod
@@ -1,6 +1,6 @@
module example.com/mymodule

go 1.14
go 1.20

require (
example.com/othermodule v1.2.3
Expand Down
2 changes: 1 addition & 1 deletion __tests__/data/go.work
@@ -1,3 +1,3 @@
go 1.19
go 1.21

use .

0 comments on commit 4ab57d7

Please sign in to comment.