Skip to content

Commit

Permalink
e2e tests on go 1.20.6 is broken, use 1.20.5 for testing and specify …
Browse files Browse the repository at this point in the history
…1.20.6 for the actual image
  • Loading branch information
iqbalaydrus committed Jul 31, 2023
1 parent 8f3d991 commit c536499
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup golang
uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: "1.20.5"
- name: Run unit testing
run: |
go test ./...
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.20 AS buildStage
FROM golang:1.20.6 AS buildStage
COPY go.mod go.sum /source_code/
WORKDIR /source_code
RUN go mod download
Expand Down

0 comments on commit c536499

Please sign in to comment.