Skip to content

Commit

Permalink
Update Go version to 1.19 for all workflows and modules
Browse files Browse the repository at this point in the history
The Go version is updated to 1.19 across all GitHub Actions workflows and go.mod files. All builds and tests will now only run on Go 1.19, simplifying our build matrix, and ensuring we're testing on the latest stable Go version.
  • Loading branch information
leaanthony committed Dec 9, 2023
1 parent 3d3f5eb commit e3e2ce8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest, macos-11]
go-version: [1.18, 1.19]
go-version: [1.19]

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
go-version: [1.18, 1.19]
go-version: [1.19]

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion v2/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/wailsapp/wails/v2

go 1.18
go 1.19

require (
github.com/Masterminds/semver v1.5.0
Expand Down

0 comments on commit e3e2ce8

Please sign in to comment.