Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision

Target

Select target project
  • components/opentofu
1 result
Select Git revision
Show changes
Commits on Source (8)
...@@ -160,7 +160,7 @@ check-semantic-version: ...@@ -160,7 +160,7 @@ check-semantic-version:
.gitlab-opentofu-image:build:base: .gitlab-opentofu-image:build:base:
extends: '.image-matrix:build' extends: '.image-matrix:build'
stage: build stage: build
image: quay.io/containers/buildah:v1.39.2 image: quay.io/containers/buildah:v1.39.3
before_script: before_script:
- *install-custom-ca-fedora - *install-custom-ca-fedora
# Supporting GitLab dependency proxies: # Supporting GitLab dependency proxies:
......
...@@ -23,14 +23,14 @@ RUN apt-get update && apt-get install -y \ ...@@ -23,14 +23,14 @@ RUN apt-get update && apt-get install -y \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# NOTE: cosign is not yet available in the debian apt sources # NOTE: cosign is not yet available in the debian apt sources
ARG COSIGN_VERSION=2.4.3 ARG COSIGN_VERSION=2.5.0
WORKDIR /tmp WORKDIR /tmp
RUN wget https://github.com/sigstore/cosign/releases/download/v${COSIGN_VERSION}/cosign_${COSIGN_VERSION}_${TARGETARCH}.deb && \ RUN wget https://github.com/sigstore/cosign/releases/download/v${COSIGN_VERSION}/cosign_${COSIGN_VERSION}_${TARGETARCH}.deb && \
dpkg -i *.deb && \ dpkg -i *.deb && \
rm -f /tmp/*.deb rm -f /tmp/*.deb
# NOTE: glab is not yet available in the debian apt sources # NOTE: glab is not yet available in the debian apt sources
ARG GLAB_VERSION=1.54.0 ARG GLAB_VERSION=1.55.0
WORKDIR /tmp WORKDIR /tmp
RUN wget https://gitlab.com/gitlab-org/cli/-/releases/v${GLAB_VERSION}/downloads/glab_${GLAB_VERSION}_linux_${TARGETARCH}.deb && \ RUN wget https://gitlab.com/gitlab-org/cli/-/releases/v${GLAB_VERSION}/downloads/glab_${GLAB_VERSION}_linux_${TARGETARCH}.deb && \
dpkg -i *.deb && \ dpkg -i *.deb && \
......
...@@ -188,7 +188,7 @@ include: ...@@ -188,7 +188,7 @@ include:
environment: environment:
name: $[[ inputs.state_name ]] name: $[[ inputs.state_name ]]
action: prepare action: prepare
resource_group: $[[ inputs.state_name ]] resource_group: $GITLAB_TOFU_STATE_NAME
artifacts: artifacts:
# Terraform's cache files can include secrets which can be accidentally exposed. # Terraform's cache files can include secrets which can be accidentally exposed.
# Please exercise caution when utilizing secrets in your Terraform infrastructure and # Please exercise caution when utilizing secrets in your Terraform infrastructure and
......