diff --git a/.circleci/config.yml b/.circleci/config.yml index 12c48107..b5b558f3 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.2 + - image: cimg/go:1.24.3 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 06b6d587..4076faed 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,7 +30,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5.4.0 with: - go-version: "1.24.2" + go-version: "1.24.3" - name: Lint uses: golangci/golangci-lint-action@v8.0.0 with: @@ -59,7 +59,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5.4.0 with: - go-version: "1.24.2" + go-version: "1.24.3" - name: Report health score uses: slackapi/slack-health-score@v0.1.1 with: diff --git a/go.mod b/go.mod index 4cea9221..54f22bc0 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/slackapi/slack-cli -go 1.24.2 +go 1.24.3 require ( github.com/AlecAivazis/survey/v2 v2.3.7