Skip to content

Commit 808a163

Browse files
committed
Update to go 1.19
Derp realized I need this for my fuzzing PR, since fuzzing is only supported as of 1.18
1 parent e03886e commit 808a163

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

.changeset/calm-cobras-tie.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@astrojs/compiler': patch
3+
---
4+
5+
Update Go to 1.19

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// Update the VARIANT arg to pick a version of Go: 1, 1.16, 1.17
99
// Append -bullseye or -buster to pin to an OS version.
1010
// Use -bullseye variants on local arm64/Apple Silicon.
11-
"VARIANT": "1.17",
11+
"VARIANT": "1.19",
1212
// Options
1313
"NODE_VERSION": "16"
1414
}

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Go
2121
uses: actions/setup-go@v2
2222
with:
23-
go-version: 1.17
23+
go-version: 1.19
2424

2525
- name: Test
2626
run: go test -v ./internal/...
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set up Go
3737
uses: actions/setup-go@v2
3838
with:
39-
go-version: 1.17
39+
go-version: 1.19
4040

4141
- name: Set up PNPM
4242
uses: pnpm/[email protected]

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Go
1717
uses: actions/setup-go@v2
1818
with:
19-
go-version: 1.17
19+
go-version: 1.19
2020

2121
- name: Set up PNPM
2222
uses: pnpm/[email protected]

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Contributions are welcome to the Go compiler!
66

77
### Go
88

9-
[Go][go] `1.17.x` is needed to work with this repo. On Macs, installing via [Homebrew][homebrew] is recommended: `brew install go`. For Windows & Linux, you can [follow Go’s installation guide][go] if you don’t have your own preferred method of package installation.
9+
[Go][go] `1.19.x` is needed to work with this repo. On Macs, installing via [Homebrew][homebrew] is recommended: `brew install go`. For Windows & Linux, you can [follow Go’s installation guide][go] if you don’t have your own preferred method of package installation.
1010

1111
If you use VS Code as your primary editor, installing the [Go extension][go-vscode] is highly recommended.
1212

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/withastro/compiler
22

3-
go 1.17
3+
go 1.19
44

55
require (
66
github.com/google/go-cmp v0.5.9

0 commit comments

Comments
 (0)