Skip to content

Commit

Permalink
Merge pull request #496 from mackerelio/update-go
Browse files Browse the repository at this point in the history
Go 1.17 -> 1.19
  • Loading branch information
yseto committed Sep 6, 2022
2 parents 1861b72 + 5650208 commit 335ca5f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3
with:
go-version: 1.17.x
go-version: 1.19.x
- run: |
go test -race -covermode atomic -coverprofile=profile.cov ./...
shell: bash
Expand Down Expand Up @@ -65,9 +65,9 @@ jobs:
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3
with:
go-version: 1.17.x
go-version: 1.19.x
- uses: actions/checkout@v2
- run: make all
- uses: actions/upload-artifact@v2
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-alpine AS builder
FROM golang:1.19-alpine AS builder
RUN apk add --no-cache make git
WORKDIR /go/src/github.com/mackerelio/mkr/
COPY . .
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/mackerelio/mkr

go 1.17
go 1.18

require (
github.com/Songmu/goxz v0.8.2
Expand Down

0 comments on commit 335ca5f

Please sign in to comment.