From 7b54542b3cce08a9fe9adea9a0f95e98050118f4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 31 Aug 2025 22:04:14 +0000 Subject: [PATCH] fix(deps): update package updates --- .github/workflows/ci-dockerfile.yml | 2 +- .github/workflows/ci-go.yml | 2 +- .github/workflows/release.yml | 4 ++-- Dockerfile | 2 +- go.mod | 4 ++-- go.sum | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci-dockerfile.yml b/.github/workflows/ci-dockerfile.yml index 5506702..258a43d 100644 --- a/.github/workflows/ci-dockerfile.yml +++ b/.github/workflows/ci-dockerfile.yml @@ -8,7 +8,7 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: hadolint uses: hadolint/hadolint-action@v3.1.0 with: diff --git a/.github/workflows/ci-go.yml b/.github/workflows/ci-go.yml index 6aa9ab0..9fcc37d 100644 --- a/.github/workflows/ci-go.yml +++ b/.github/workflows/ci-go.yml @@ -11,7 +11,7 @@ jobs: build-test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-go@v5 with: go-version-file: go.mod diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index edc2a17..588f46d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: outputs: version: ${{ steps.get-version.outputs.version }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Get Release Version id: get-version uses: nullify-platform/github-actions/actions/release-version@main @@ -37,7 +37,7 @@ jobs: runs-on: ubuntu-latest needs: [ get-version ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Generate Release Tag run: echo "RELEASE_TAG=v${{ needs.get-version.outputs.version }}" >> $GITHUB_ENV - name: Generate Release diff --git a/Dockerfile b/Dockerfile index 138a898..432f69f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,3 @@ # nosec The image is used solely for linting purposes and does not run as a service -FROM golangci/golangci-lint:v2.0.2@sha256:d55581f7797e7a0877a7c3aaa399b01bdc57d2874d6412601a046cc4062cb62e as golangci-lint +FROM golangci/golangci-lint:v2.4.0@sha256:91460846c43b3de53eb77e968b17363e8747e6f3fc190575b52be60c49446e23 as golangci-lint FROM hadolint/hadolint:2.12.0@sha256:30a8fd2e785ab6176eed53f74769e04f125afb2f74a6c52aef7d463583b6d45e as hadolint diff --git a/go.mod b/go.mod index b1ef3d2..19e8f50 100644 --- a/go.mod +++ b/go.mod @@ -2,12 +2,12 @@ module github.com/nullify-platform/config-file-parser go 1.23.0 -toolchain go1.24.1 +toolchain go1.25.0 require ( github.com/gobwas/glob v0.2.3 github.com/pkg/errors v0.9.1 - github.com/stretchr/testify v1.10.0 + github.com/stretchr/testify v1.11.1 gopkg.in/yaml.v3 v3.0.1 ) diff --git a/go.sum b/go.sum index 4ad6fc2..90b1775 100644 --- a/go.sum +++ b/go.sum @@ -21,8 +21,8 @@ github.com/robfig/cron/v3 v3.0.1/go.mod h1:eQICP3HwyT7UooqI/z+Ov+PtYAWygg1TEWWzG github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= github.com/rogpeppe/go-internal v1.8.1 h1:geMPLpDpQOgVyCg5z5GoRwLHepNdb71NXb67XFkP+Eg= github.com/rogpeppe/go-internal v1.8.1/go.mod h1:JeRgkft04UBgHMgCIwADu4Pn6Mtm5d4nPKWu0nJ5d+o= -github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA= -github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= +github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 h1:nDVHiLt8aIbd/VzvPWN6kSOPE7+F/fNFDSXLVYkE/Iw= golang.org/x/exp v0.0.0-20250305212735-054e65f0b394/go.mod h1:sIifuuw/Yco/y6yb6+bDNfyeQ/MdPUy/hKEMYQV17cM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=