From 5c6f76fee6b83377c872a09c72b10bb1bc06d6a5 Mon Sep 17 00:00:00 2001 From: Marin Nozhchev Date: Sat, 28 Mar 2026 10:23:22 +0200 Subject: [PATCH 1/2] Update GitHub Actions to use latest versions --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08973b8..a2c72b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,10 +15,10 @@ jobs: # Only ubuntu allows for docker support - https://docs.github.com/en/actions/using-containerized-services/about-service-containers runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.2.2 + - uses: actions/checkout@v6 - name: Set up Go - uses: actions/setup-go@v5.3.0 + uses: actions/setup-go@v6 with: go-version: '1.24' @@ -43,4 +43,4 @@ jobs: # with: # go-version: '1.24' # - name: Test - # run: make short-test \ No newline at end of file + # run: make short-test From dcaa71a3c85ea7603a7bedd215ec2edd79d48c46 Mon Sep 17 00:00:00 2001 From: Marin Nozhchev Date: Sat, 28 Mar 2026 10:25:53 +0200 Subject: [PATCH 2/2] Update golangci-lint workflow to use newer versions --- .github/workflows/golangci-lint.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 40bde82..d3cdf3b 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -16,18 +16,18 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: actions/setup-go@v5 + - uses: actions/checkout@v6 + - uses: actions/setup-go@v6 with: - go-version: '1.24' + go-version: '1.26' cache: false - name: golangci-lint - uses: golangci/golangci-lint-action@v8 + uses: golangci/golangci-lint-action@v9 with: # Require: The version of golangci-lint to use. # When `install-mode` is `binary` (default) the value can be v1.2 or v1.2.3 or `latest` to use the latest version. # When `install-mode` is `goinstall` the value can be v1.2.3, `latest`, or the hash of a commit. - version: v2.5.0 + version: v2.11.4 # Optional: working directory, useful for monorepos # working-directory: somedir @@ -52,4 +52,4 @@ jobs: # skip-build-cache: true # Optional: The mode to install golangci-lint. It can be 'binary' or 'goinstall'. - # install-mode: "goinstall" \ No newline at end of file + # install-mode: "goinstall"