Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .docker/pre-commit/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:24.04@sha256:c4a8d5503dfb2a3eb8ab5f807da5bc69a85730fb49b5cfca2330194ebcc41c7b AS build
FROM ubuntu:24.04@sha256:786a8b558f7be160c6c8c4a54f9a57274f3b4fb1491cf65146521ae77ff1dc54 AS build

WORKDIR /opt/build

Expand Down Expand Up @@ -78,7 +78,7 @@ RUN set -eux; \
chmod 755 /usr/local/bin/terraform-docs

# renovate: datasource=github-releases depName=gruntwork-io/terragrunt registryUrl=https://github.com/
ARG TERRAGRUNT_VERSION="1.0.6"
ARG TERRAGRUNT_VERSION="1.0.7"
ARG TERRAGRUNT_SRC="https://github.com/gruntwork-io/terragrunt/releases/download/v${TERRAGRUNT_VERSION}/terragrunt_linux_amd64"
ARG TERRAGRUNT_ARTIFACT="terragrunt"
RUN set -eux; \
Expand All @@ -87,7 +87,7 @@ RUN set -eux; \
chmod 755 /usr/local/bin/terragrunt

# renovate: datasource=github-releases depName=terraform-linters/tflint registryUrl=https://github.com/
ARG TFLINT_VERSION="0.62.1"
ARG TFLINT_VERSION="0.63.0"
ARG TFLINT_SRC="https://github.com/terraform-linters/tflint/releases/download/v${TFLINT_VERSION}/tflint_linux_amd64.zip"
ARG TFLINT_ARTIFACT="tflint.zip"
RUN set -eux; \
Expand All @@ -96,15 +96,15 @@ RUN set -eux; \
chmod 755 /usr/local/bin/tflint;

# renovate: datasource=github-releases depName=opentofu/opentofu registryUrl=https://github.com/
ARG TOFU_VERSION="1.11.8"
ARG TOFU_VERSION="1.12.1"
ARG TOFU_SRC="https://github.com/opentofu/opentofu/releases/download/v${TOFU_VERSION}/tofu_${TOFU_VERSION}_linux_amd64.zip"
ARG TOFU_ARTIFACT="tofu.zip"
RUN set -eux; \
wget --progress=dot:giga -O ${TOFU_ARTIFACT} ${TOFU_SRC}; \
unzip -o ${TOFU_ARTIFACT} -d /usr/local/bin/; \
chmod 755 /usr/local/bin/tofu

FROM ubuntu:24.04@sha256:c4a8d5503dfb2a3eb8ab5f807da5bc69a85730fb49b5cfca2330194ebcc41c7b AS final
FROM ubuntu:24.04@sha256:786a8b558f7be160c6c8c4a54f9a57274f3b4fb1491cf65146521ae77ff1dc54 AS final

ENV DEBIAN_FRONTEND=noninteractive

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-forge-github-app-register.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
if: github.event.pull_request.user.login != 'dependabot[bot]'
steps:
- name: Checkout Repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3

- name: Cache Pre-commit
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ repos:
# Commit Message Hooks
# ---------------------
- repo: https://github.com/commitizen-tools/commitizen
rev: v4.15.1
rev: v4.16.3
hooks:
- id: commitizen
name: Git · Validate commit message
Expand Down Expand Up @@ -230,7 +230,7 @@ repos:
always_run: true

- repo: https://github.com/antonbabenko/pre-commit-terraform
rev: v1.105.0
rev: v1.106.0
hooks:
- id: terraform_fmt
name: Terraform · Formatter
Expand Down
2 changes: 1 addition & 1 deletion modules/integrations/splunk_otel_eks/otel.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ resource "helm_release" "splunk_otel_collector" {
name = "splunk-otel-collector"
repository = "https://signalfx.github.io/splunk-otel-collector-chart"
chart = "splunk-otel-collector"
version = "0.153.0"
version = "0.153.1"
namespace = "splunk-otel-collector"
create_namespace = true

Expand Down