Skip to content

Commit

Permalink
chore(build): update build toolchain to go1.18
Browse files Browse the repository at this point in the history
  • Loading branch information
mroth committed Jun 25, 2022
1 parent 1985323 commit 866e1aa
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "Ruby",
"build": {
"dockerfile": "Dockerfile",
"args": {
"args": {
// Update 'VARIANT' to pick a Ruby version: 3, 3.0, 2, 2.7, 2.6
// Append -bullseye or -buster to pin to an OS version.
// Use -bullseye variants on local on arm64/Apple Silicon.
Expand All @@ -24,7 +24,7 @@
"alexkrechik.cucumberautocomplete",
"timonwong.shellcheck"
],

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

Expand All @@ -34,7 +34,7 @@
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode",
"features": {
"golang": "1.17"
"golang": "1.18"
}

}
}
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.17
go-version: 1.18
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.17.x]
go-version: ["1.18"]
os: [ubuntu-latest, macos-latest]
# NOTE: continue-on-error still marks test as failed in UI, see
# NOTE: continue-on-error still marks test as failed in UI, see
# https://github.com/actions/toolkit/issues/399. Disabling expected
# failing Windows integration test for now to avoid confusion.
#
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.17.x]
go-version: ["1.18"]
platform: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
runs-on: ${{ matrix.platform }}
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/mroth/scmpuff

go 1.17
go 1.18

require github.com/spf13/cobra v1.4.0

Expand Down

0 comments on commit 866e1aa

Please sign in to comment.