Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Go to 1.21.1 #159

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
name: All SDKs image
strategy:
matrix:
go-version: [1.20.x]
go-version: [1.21.x]
runs-on: ubuntu-latest
steps:
# If no version of Pulumi is supplied by the incoming event (e.g. in the
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
- name: Install go
uses: actions/setup-go@v2
with:
go-version: "1.20.3"
go-version: "1.21.1"
- name: Compile tests
working-directory: tests
run: |
Expand All @@ -106,7 +106,7 @@ jobs:
name: Provider Build Environment image
strategy:
matrix:
go-version: [1.20.x]
go-version: [1.21.x]
runs-on: ubuntu-latest
steps:
# If no version of Pulumi is supplied by the incoming event (e.g. in the
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
- name: Install go
uses: actions/setup-go@v2
with:
go-version: "1.20.3"
go-version: "1.21.1"
- name: Compile tests
working-directory: tests
run: |
Expand Down Expand Up @@ -218,7 +218,7 @@ jobs:
- name: Install go
uses: actions/setup-go@v2
with:
go-version: "1.20.3"
go-version: "1.21.1"
- name: Compile tests
working-directory: tests
run: |
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:
- name: Install go
uses: actions/setup-go@v2
with:
go-version: "1.20.3"
go-version: "1.21.1"
- name: Compile tests
working-directory: tests
run: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
name: All SDKs image
strategy:
matrix:
go-version: [1.20.x]
go-version: [1.21.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
- name: Install go
uses: actions/setup-go@v2
with:
go-version: "1.20.3"
go-version: "1.21.1"
- name: Compile tests
working-directory: tests
run: |
Expand All @@ -102,7 +102,7 @@ jobs:
name: Provider Build Environment image
strategy:
matrix:
go-version: [1.20.x]
go-version: [1.21.1]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
- name: Install go
uses: actions/setup-go@v2
with:
go-version: "1.20.3"
go-version: "1.21.1"
- name: Compile tests
working-directory: tests
run: |
Expand Down Expand Up @@ -263,7 +263,7 @@ jobs:
- name: Install go
uses: actions/setup-go@v2
with:
go-version: "1.20.3"
go-version: "1.21.1"
- name: Compile tests
working-directory: tests
run: |
Expand Down Expand Up @@ -370,7 +370,7 @@ jobs:
- name: Install go
uses: actions/setup-go@v2
with:
go-version: "1.20.3"
go-version: "1.21.1"
- name: Compile tests
working-directory: tests
run: |
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 3.87.0

- Upgrade Go to 1.21.1. ([#159](https://github.com/pulumi/pulumi-docker-containers/pull/159))

## 3.82.0

- Upgrade Node.js in the `pulumi/pulumi` image and `pulumi/nodejs` UBI image to the Active LTS version 18
Expand Down
10 changes: 5 additions & 5 deletions docker/go/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
FROM ubuntu:bionic AS builder

ARG PULUMI_VERSION
ARG GO_RUNTIME_VERSION=1.20.3
ENV GO_RUNTIME_386_SHA256 e12384311403f1389d14cc1c1295bfb4e0dd5ab919403b80da429f671a223507
ENV GO_RUNTIME_AMD64_SHA256 979694c2c25c735755bf26f4f45e19e64e4811d661dd07b8c010f7a8e18adfca
ENV GO_RUNTIME_ARM64_SHA256 eb186529f13f901e7a2c4438a05c2cd90d74706aaa0a888469b2a4a617b6ee54
ENV GO_RUNTIME_ARMV6L_SHA256 b421e90469a83671641f81b6e20df6500f033e9523e89cbe7b7223704dd1035c
ARG GO_RUNTIME_VERSION=1.21.1
ENV GO_RUNTIME_386_SHA256 b93850666cdadbd696a986cf7b03111fe99db8c34a9aaa113d7c96d0081e1901
ENV GO_RUNTIME_AMD64_SHA256 b3075ae1ce5dab85f89bc7905d1632de23ca196bd8336afd93fa97434cfa55ae
ENV GO_RUNTIME_ARM64_SHA256 7da1a3936a928fd0b2602ed4f3ef535b8cd1990f1503b8d3e1acc0fa0759c967
ENV GO_RUNTIME_ARMV6L_SHA256 f3716a43f59ae69999841d6007b42c9e286e8d8ce470656fb3e70d7be2d7ca85

WORKDIR /golang
RUN apt-get update -y && \
Expand Down
4 changes: 2 additions & 2 deletions docker/go/Dockerfile.ubi
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ RUN microdnf install -y \
RUN curl -fsSL https://get.pulumi.com/ | bash -s -- --version $PULUMI_VERSION

# Set go versions
ARG RUNTIME_VERSION=1.20.3
ENV RUNTIME_SHA256 979694c2c25c735755bf26f4f45e19e64e4811d661dd07b8c010f7a8e18adfca
ARG RUNTIME_VERSION=1.21.1
ENV RUNTIME_SHA256 b3075ae1ce5dab85f89bc7905d1632de23ca196bd8336afd93fa97434cfa55ae

WORKDIR /golang
RUN microdnf install -y \
Expand Down
4 changes: 2 additions & 2 deletions docker/pulumi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ LABEL "homepage"="https://pulumi.com"
LABEL "maintainer"="Pulumi Team <[email protected]>"
LABEL org.opencontainers.image.description="The Pulumi CLI, in a Docker container."

ENV GOLANG_VERSION 1.20.3
ENV GOLANG_SHA256 979694c2c25c735755bf26f4f45e19e64e4811d661dd07b8c010f7a8e18adfca
ENV GOLANG_VERSION 1.21.1
ENV GOLANG_SHA256 b3075ae1ce5dab85f89bc7905d1632de23ca196bd8336afd93fa97434cfa55ae

# Install deps all in one step
RUN apt-get update -y && \
Expand Down