Skip to content

Commit

Permalink
Align go versions
Browse files Browse the repository at this point in the history
  • Loading branch information
robvanmieghem committed Jan 21, 2024
1 parent 001f988 commit 209790a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: ">=1.21"
id: go

- name: Check out code into the Go module directory
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '>=1.20.0'
go-version: '>=1.21.0'

- name: build accountactivation
run: cd accountactivation && GOOS=linux GOARCH=amd64 go build -ldflags="-X 'main.Version=${{ github.ref }}'" -o ../dist/
Expand Down
2 changes: 1 addition & 1 deletion bridges/stellar-evm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20 as BUILDER
FROM golang:1.21 as BUILDER
WORKDIR /go/src/github.com/threefoldfoundation/tft/bridges/stellar-evm
COPY ./ ./
RUN go build -ldflags '-w -s -extldflags "-static"'
Expand Down

0 comments on commit 209790a

Please sign in to comment.