From 86405f49dfd53f72a7eae5c20d5b2316df7c56b4 Mon Sep 17 00:00:00 2001 From: Valerii <0xcfff@gmail.com> Date: Tue, 18 Aug 2026 10:06:34 +0000 Subject: [PATCH 1/2] fix(ci): bump actions to Node-24 compatible versions - actions/checkout@v4 -> @v7 - actions/setup-go@v5 -> @v7 - actions/upload-artifact@v4 -> @v7 - actions/download-artifact@v4 -> @v8 - goreleaser/goreleaser-action@v5 -> @v7 - goreleaser version: latest -> '~> v2' Resolves all 4 annotation warnings from CI run 32113407009 --- .github/workflows/ci.yaml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8a75578..6c02233 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -25,11 +25,11 @@ jobs: steps: # step 1: Checkout repository code - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v7 # step 2: Set up go - name: Set up Go ${{ env.GO_VERSION }} - uses: actions/setup-go@v5 + uses: actions/setup-go@v7 with: go-version: ${{ env.GO_VERSION }} @@ -61,7 +61,7 @@ jobs: # step 8: Upload results - name: Upload test results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: coverage-${{ matrix.os }} path: coverage-${{ matrix.os }}.txt @@ -74,11 +74,11 @@ jobs: steps: # step 1: Checkout repository code - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v7 # step 2: Set up go - name: Set up Go ${{ env.GO_VERSION }} - uses: actions/setup-go@v5 + uses: actions/setup-go@v7 with: go-version: ${{ env.GO_VERSION }} @@ -91,7 +91,7 @@ jobs: # step 4: Download results - name: Download test results - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: path: data/coverage/ @@ -138,18 +138,18 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Set up Go ${{ env.GO_VERSION }} - uses: actions/setup-go@v5 + uses: actions/setup-go@v7 with: go-version: ${{ env.GO_VERSION }} - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v5 + uses: goreleaser/goreleaser-action@v7 with: distribution: goreleaser - version: latest + version: '~> v2' args: release --clean env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 54b2bdb5dec421f8b83e3ceb9ba4287fbf7cc255 Mon Sep 17 00:00:00 2001 From: Valerii <0xcfff@gmail.com> Date: Tue, 18 Aug 2026 10:18:01 +0000 Subject: [PATCH 2/2] fix(ci): bump marocchino/sticky-pull-request-comment from v2 to v3 v3.0.5 targets node24, resolving the final Node.js 20 deprecation warning that was missed in the original fix pass (step gated on pull_request events, invisible in tag-push runs). --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6c02233..f03e127 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -125,7 +125,7 @@ jobs: # step 8: Generate coverage - name: Add Coverage PR Comment - uses: marocchino/sticky-pull-request-comment@v2 + uses: marocchino/sticky-pull-request-comment@v3 if: github.event_name == 'pull_request' with: recreate: true