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 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"