From af5cbd9b3a1a12b589c8059a169be2d6c724c991 Mon Sep 17 00:00:00 2001 From: Alexander Rolek Date: Thu, 14 Sep 2023 11:05:26 -0600 Subject: [PATCH] Upgrade Go to 1.21.1 --- .github/actions/amazon-linux-build-action/Dockerfile | 4 ++-- .github/actions/tegola-setup-env/action.yml | 2 +- .github/workflows/on_pr_push.yml | 2 +- .github/workflows/on_release_publish.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/actions/amazon-linux-build-action/Dockerfile b/.github/actions/amazon-linux-build-action/Dockerfile index 0799f6d9f..feb66d618 100644 --- a/.github/actions/amazon-linux-build-action/Dockerfile +++ b/.github/actions/amazon-linux-build-action/Dockerfile @@ -5,8 +5,8 @@ FROM amazonlinux:latest RUN yum install -y tar gzip gcc # install Go -ENV GOLANG_VERSION 1.21.0 -ENV GOLANG_VERSION_SHA256 d0398903a16ba2232b389fb31032ddf57cac34efda306a0eebac34f0965a0742 +ENV GOLANG_VERSION 1.21.1 +ENV GOLANG_VERSION_SHA256 b3075ae1ce5dab85f89bc7905d1632de23ca196bd8336afd93fa97434cfa55ae RUN curl -o golang.tar.gz https://dl.google.com/go/go$GOLANG_VERSION.linux-amd64.tar.gz \ && echo "$GOLANG_VERSION_SHA256 golang.tar.gz" | sha256sum --strict --check \ diff --git a/.github/actions/tegola-setup-env/action.yml b/.github/actions/tegola-setup-env/action.yml index 4d52493b5..194743ec8 100644 --- a/.github/actions/tegola-setup-env/action.yml +++ b/.github/actions/tegola-setup-env/action.yml @@ -31,7 +31,7 @@ runs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.21.0 + go-version: 1.21.1 if: ${{ inputs.go == 'true' }} - name: Set tegola version diff --git a/.github/workflows/on_pr_push.yml b/.github/workflows/on_pr_push.yml index 3edea1ffb..1b413ded2 100644 --- a/.github/workflows/on_pr_push.yml +++ b/.github/workflows/on_pr_push.yml @@ -35,7 +35,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.21.0 + go-version: 1.21.1 - name: Env Debug run: | diff --git a/.github/workflows/on_release_publish.yml b/.github/workflows/on_release_publish.yml index 6d42e8d76..f68397678 100644 --- a/.github/workflows/on_release_publish.yml +++ b/.github/workflows/on_release_publish.yml @@ -56,7 +56,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.21.0 + go-version: 1.21.1 - name: Build embedded UI run: |