From 02bc3971154232796520a32396438e40dcc75bf7 Mon Sep 17 00:00:00 2001 From: "F.D.Castel" Date: Thu, 2 Apr 2026 14:18:27 -0300 Subject: [PATCH] ci: upgrade GitHub Actions from Node.js 20 to Node.js 24 Upgrade the following actions to versions that use the Node.js 24 runtime: - golangci/golangci-lint-action: v8.0.0 -> v9.2.0 - release-drafter/release-drafter: v6.1.0 -> v7.1.1 - docker/setup-buildx-action: v3.12.0 -> v4.0.0 - docker/build-push-action: v6.18.0 -> v7.0.0 Closes #494 --- .github/workflows/ci.yml | 2 +- .github/workflows/gha.yml | 4 ++-- .github/workflows/go.yml | 2 +- .github/workflows/release-drafter.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dfd53610..830706fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -160,7 +160,7 @@ jobs: with: go-version-file: 'go.mod' - name: Install Docker - uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0 + uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0 - name: Install dependencies run: go mod download - name: Run integration tests diff --git a/.github/workflows/gha.yml b/.github/workflows/gha.yml index 0d145087..c22f1911 100644 --- a/.github/workflows/gha.yml +++ b/.github/workflows/gha.yml @@ -29,9 +29,9 @@ jobs: - name: Build run: go build -v -o /dev/null - name: Set up Docker Buildx - uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0 + uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0 - name: Build and export to Docker - uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0 # zizmor: ignore[cache-poisoning] + uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0 # zizmor: ignore[cache-poisoning] with: build-args: | AUTHORIZED_REPOSITORY=${{ github.repository }} diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index d734b047..79565e13 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -29,7 +29,7 @@ jobs: with: go-version-file: 'go.mod' - name: golangci-lint - uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0 + uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0 with: version: v2.11.2 diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index 007bdbbf..d3e6e9da 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -17,7 +17,7 @@ jobs: pull-requests: write runs-on: ubuntu-24.04 steps: - - uses: release-drafter/release-drafter@b1476f6e6eb133afa41ed8589daba6dc69b4d3f5 # v6.1.0 + - uses: release-drafter/release-drafter@139054aeaa9adc52ab36ddf67437541f039b88e2 # v7.1.1 with: config-name: release-drafter-config.yml publish: false