Skip to content

Commit

Permalink
Bump Go to 1.21 (#873)
Browse files Browse the repository at this point in the history
  • Loading branch information
orlade-anz authored Oct 23, 2023
1 parent f225244 commit 91ae81f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.21
check-latest: true

- name: Set up Node
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.21
check-latest: true

- name: Check out code
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.21
check-latest: true

- name: Check out code
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ name: Release
on:
push:
tags:
- 'v*.*.*'
- "v*.*.*"
paths-ignore:
- ts/**
- .github/workflows/npm-publish.yaml
- .github/workflows/ts.yaml

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOPROXY: ${{ vars.GOPROXY }}
GOPROXY: ${{ vars.GOPROXY }}

jobs:
release-sysl:
Expand All @@ -22,7 +22,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.21
check-latest: true

- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Builds a docker image by building the sysl binary
# on Go 1.19 (by default) using the current workspace and then copying the binary
# on Go 1.21 (by default) using the current workspace and then copying the binary
# to an image and setting up the entrypoint.
#
# The produced image is published to https://hub.docker.com/r/anzbank/sysl

ARG go_ver=1.19
ARG go_ver=1.21
ARG alpine_ver=3.16

ARG DOCKER_BASE=golang:${go_ver}-alpine${alpine_ver}
Expand Down

0 comments on commit 91ae81f

Please sign in to comment.