diff --git a/.circleci/config.yml b/.circleci/config.yml index ac9ece40..ab62a38f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -113,7 +113,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.4 + - image: cimg/go:1.24.5 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 4fcb7498..c8b05e0d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,7 +25,7 @@ jobs: - name: Set up Go uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 with: - go-version: "1.24.4" + go-version: "1.24.5" - name: Lint uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0 with: @@ -54,7 +54,7 @@ jobs: - name: Set up Go uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 with: - go-version: "1.24.4" + go-version: "1.24.5" - name: Report health score uses: slackapi/slack-health-score@d58a419f15cdaff97e9aa7f09f95772830ab66f7 # v0.1.1 with: diff --git a/go.mod b/go.mod index c8ede2b4..5253a04d 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/slackapi/slack-cli -go 1.24.4 +go 1.24.5 require ( github.com/AlecAivazis/survey/v2 v2.3.7