From b7eec7e1013daaa13b3f18ed2620aa8fd1c8ec64 Mon Sep 17 00:00:00 2001 From: Elliot Courant Date: Tue, 3 Jan 2023 21:51:11 -0600 Subject: [PATCH] deps(container): Bumping golang to 1.19.4 --- .github/workflows/build.yml | 2 +- .github/workflows/publish.yml | 2 +- images/golang/{1.19.3 => 1.19.4}/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename images/golang/{1.19.3 => 1.19.4}/Dockerfile (95%) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b4dedf8..e61a04f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: matrix: include: - path: golang - version: 1.19.3 + version: 1.19.4 - path: node version: 18.10.0-buster - path: postgres diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5c47698..6bc4b73 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,7 +14,7 @@ jobs: matrix: include: - path: golang - version: 1.19.3 + version: 1.19.4 - path: node version: 18.10.0-buster - path: postgres diff --git a/images/golang/1.19.3/Dockerfile b/images/golang/1.19.4/Dockerfile similarity index 95% rename from images/golang/1.19.3/Dockerfile rename to images/golang/1.19.4/Dockerfile index 4307bee..a3f5f52 100644 --- a/images/golang/1.19.3/Dockerfile +++ b/images/golang/1.19.4/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.19.3 +FROM golang:1.19.4 RUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | gpg --dearmor -o /usr/share/keyrings/githubcli-archive-keyring.gpg && \ echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null && \ apt-get update