From 5d42d61fda05fdde58631b890edadd20639c5cda Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Fri, 3 Jul 2026 20:07:22 +0300 Subject: [PATCH] .github: fetch fresh actions Get rid of warnings like this: Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/checkout@v4, actions/setup-go@v5, golangci/golangci-lint-action@v8. Signed-off-by: Anna Shaleva --- .github/workflows/go-linter.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go-linter.yml b/.github/workflows/go-linter.yml index 3147c88..a6b72e4 100644 --- a/.github/workflows/go-linter.yml +++ b/.github/workflows/go-linter.yml @@ -20,23 +20,23 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} - name: Checkout .github repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: repository: nspcc-dev/.github path: nspcc-gh - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 with: go-version-file: ${{ inputs.workdir }}/go.mod cache-dependency-path: ${{ inputs.workdir }}/go.sum - name: golangci-lint - uses: golangci/golangci-lint-action@v8 + uses: golangci/golangci-lint-action@v9 with: version: latest working-directory: ${{ inputs.workdir }}