diff --git a/.circleci/config.yml b/.circleci/config.yml index e63fad27..94462cf3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -109,7 +109,7 @@ jobs: default: "dev-build" docker: # run the steps with Docker # CircleCI Go images available at: https://hub.docker.com/r/circleci/golang/ - - image: cimg/go:1.24.1 + - image: cimg/go:1.24.2 steps: # steps that comprise the `build` job - checkout # check out source code to working directory - restore_cache: # restores saved cache if no changes are detected since last run diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f8b2ae5c..19e02ec2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -28,7 +28,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: "1.24.1" + go-version: "1.24.2" - name: Lint uses: golangci/golangci-lint-action@v7 with: @@ -54,7 +54,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: "1.24.1" + go-version: "1.24.2" - name: Report health score uses: slackapi/slack-health-score@v0 with: diff --git a/go.mod b/go.mod index 2dbd0db9..dd057532 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/slackapi/slack-cli -go 1.24.1 +go 1.24.2 require ( github.com/AlecAivazis/survey/v2 v2.3.7