-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update all dependencies
- Loading branch information
1 parent
3985ead
commit ef3a696
Showing
3 changed files
with
37 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
|
||
FROM registry.access.redhat.com/ubi9/go-toolset:1.20.10-2.1699551725 as builder | ||
FROM registry.access.redhat.com/ubi9/go-toolset:1.20.10-2.1699551725@sha256:310fbbc9b2a6af87d730e244d5b20a1836df3ae295c290ffec2d4ef6a53a33f8 as builder | ||
|
||
USER root | ||
WORKDIR /workspace | ||
COPY . . | ||
|
||
# renovate: datasource=github-releases depName=pulumi/pulumi | ||
ENV PULUMI_VERSION 3.94.2 | ||
ENV PULUMI_VERSION v3.96.2 | ||
ENV PULUMI_URL https://github.com/pulumi/pulumi/releases/download/v${PULUMI_VERSION}/pulumi-v${PULUMI_VERSION}-linux-x64.tar.gz | ||
|
||
RUN make build \ | ||
&& curl -L ${PULUMI_URL} -o pulumicli.tar.gz \ | ||
&& tar -xzvf pulumicli.tar.gz | ||
|
||
FROM registry.access.redhat.com/ubi9/ubi | ||
FROM registry.access.redhat.com/ubi9/ubi@sha256:6b95efc134c2af3d45472c0a2f88e6085433df058cc210abb2bb061ac4d74359 | ||
|
||
LABEL org.opencontainers.image.authors="Adrian Riobo<[email protected]>" | ||
|
||
|
@@ -33,15 +33,15 @@ ENV AZ_CLI_RPM https://packages.microsoft.com/rhel/9.0/prod/Packages/a/azure-cli | |
|
||
# Pulumi plugins | ||
# renovate: datasource=github-releases depName=pulumi/pulumi-aws | ||
ARG PULUMI_AWS_VERSION=v6.12.1 | ||
ARG PULUMI_AWS_VERSION=v6.13.2 | ||
# renovate: datasource=github-releases depName=pulumi/pulumi-aws | ||
ARG PULUMI_AWSX_VERSION=v2.3.0 | ||
ARG PULUMI_AWSX_VERSION=v6.13.2 | ||
# renovate: datasource=github-releases depName=pulumi/pulumi-azure-native | ||
ARG PULUMI_AZURE_NATIVE_VERSION=v2.20.0 | ||
ARG PULUMI_AZURE_NATIVE_VERSION=v2.21.2 | ||
# renovate: datasource=github-releases depName=pulumi/pulumi-command | ||
ARG PULUMI_COMMAND_VERSION=v0.9.2 | ||
# renovate: datasource=github-releases depName=pulumi/pulumi-tls | ||
ARG PULUMI_TLS_VERSION=v4.11.1 | ||
ARG PULUMI_TLS_VERSION=v5.0.0 | ||
# renovate: datasource=github-releases depName=pulumi/pulumi-random | ||
ARG PULUMI_RANDOM_VERSION=v4.14.0 | ||
|
||
|