Skip to content

Commit

Permalink
chore: update docker and workflows to use go1.18 (#3102)
Browse files Browse the repository at this point in the history
  • Loading branch information
aloknerurkar authored Jul 20, 2022
1 parent bf64037 commit 90de205
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/beekeeper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.17'
go-version: '1.18'
- name: Checkout
uses: actions/checkout@v2
if: github.event.action != 'beekeeper'
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.17'
go-version: '1.18'
- name: Checkout
uses: actions/checkout@v2
if: github.event.action != 'beekeeper'
Expand Down Expand Up @@ -240,7 +240,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.17'
go-version: '1.18'
- name: Checkout
uses: actions/checkout@v2
if: github.event.action != 'beekeeper'
Expand Down Expand Up @@ -321,7 +321,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.17'
go-version: '1.18'
- name: Checkout
uses: actions/checkout@v2
if: github.event.action != 'beekeeper'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.17
go-version: 1.18
- name: Checkout
uses: actions/checkout@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.17 AS build
FROM golang:1.18 AS build

WORKDIR /src
# enable modules caching in separate layer
Expand Down

0 comments on commit 90de205

Please sign in to comment.