From b52585b20f4cd8f434810710f53ba8210c6792c8 Mon Sep 17 00:00:00 2001 From: Johannes Scheuermann Date: Sat, 8 Apr 2023 11:23:38 +0100 Subject: [PATCH] Update to go 1.19.8 (#1577) --- .github/workflows/pull_request.yml | 6 +++--- .github/workflows/release.yaml | 2 +- Dockerfile | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 35c91fed0..f0bb236d1 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -18,7 +18,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v1 with: - go-version: 1.19.5 + go-version: 1.19.8 - uses: actions/cache@v2 with: path: ~/go/pkg/mod @@ -44,7 +44,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v1 with: - go-version: 1.19.5 + go-version: 1.19.8 - name: Check out code into the Go module directory uses: actions/checkout@v2 with: @@ -109,7 +109,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v1 with: - go-version: 1.19.5 + go-version: 1.19.8 - name: Check out code into the Go module directory uses: actions/checkout@v2 with: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3d8c1d0e4..571e9cde8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -43,7 +43,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v1 with: - go-version: 1.19.5 + go-version: 1.19.8 # https://github.com/goreleaser/goreleaser/issues/1311 - name: Get current semver tag run: echo "::set-output name=CURRENT_TAG::$(git describe --tags --match "v*" --abbrev=0)" diff --git a/Dockerfile b/Dockerfile index 1690d5ea6..ebdb8e696 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ARG BASE_IMAGE=docker.io/debian:bullseye # Build the manager binary -FROM docker.io/library/golang:1.19.5 as builder +FROM docker.io/library/golang:1.19.8 as builder # Install FDB this version is only required to compile the fdb operator ARG FDB_VERSION=6.2.29