Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Commit

Permalink
Update Go to 1.19.1 (#2003)
Browse files Browse the repository at this point in the history
  • Loading branch information
divergentdave authored Sep 6, 2022
1 parent 4537213 commit 656dcf5
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-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
- name: Setup go
uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.19.1
- name: Test
run: go test -race --coverprofile=cover.out --covermode=atomic ./...
- name: Upload test coverage
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
- name: Setup go
uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.19.1
- name: Test
run: go test -race -coverprofile=cover.out --covermode=atomic ./...
- name: Upload test coverage
Expand All @@ -163,7 +163,7 @@ jobs:
- name: Setup go
uses: actions/setup-go@v2
with:
go-version: 1.19
go-version: 1.19.1
- name: Run golangci-lint on key-rotator
uses: golangci/[email protected]
with:
Expand All @@ -178,7 +178,7 @@ jobs:
- name: Setup go
uses: actions/setup-go@v2
with:
go-version: 1.19
go-version: 1.19.1
- name: Run golangci-lint on workflow-manager
uses: golangci/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion key-rotator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19.0 as builder
FROM golang:1.19.1 as builder

# Copy go modules first, to allow module download to be cached.
WORKDIR /workspace
Expand Down
2 changes: 1 addition & 1 deletion workflow-manager/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19.0 as builder
FROM golang:1.19.1 as builder
# set GOPATH to empty since we're building with modules.
ENV GOPATH=
WORKDIR /workspace/
Expand Down

0 comments on commit 656dcf5

Please sign in to comment.