Skip to content

Commit

Permalink
ci: bump to go 1.18.2
Browse files Browse the repository at this point in the history
  • Loading branch information
roylee17 committed May 13, 2022
1 parent 2e033d5 commit 2384dbd
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/basic-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: [1.18.1, 1.17.7]
go: [1.18.2]
steps:
- name: Set up Go
uses: actions/setup-go@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/full-sync-part-1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: self-hosted
strategy:
matrix:
go: [1.18.1]
go: [1.18.2]
steps:
- run: |
echo "Note ${{ github.event.inputs.note }}!"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/full-sync-part-2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: self-hosted
strategy:
matrix:
go: [1.18.1]
go: [1.18.2]
steps:
- run: |
echo "Note ${{ github.event.inputs.note }}!"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ env:
# go needs absolute directories, using the $HOME variable doesn't work here.
GOCACHE: /home/runner/work/go/pkg/build
GOPATH: /home/runner/work/go
GO_VERSION: '^1.18.1'
GO_VERSION: '^1.18.2'

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18.1
go-version: 1.18.2
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

ARG ARCH=amd64

FROM golang:1.18.1 AS build-container
FROM golang:1.18.2 AS build-container

ARG ARCH

Expand Down

0 comments on commit 2384dbd

Please sign in to comment.