From cf649998f51d7344837c16e2703db405b6b5d444 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 17 Jan 2026 00:32:39 +0000 Subject: [PATCH] build(deps): bump golang to 1.25.6 --- .circleci/config.yml | 2 +- .github/workflows/tests.yml | 4 ++-- go.mod | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b925304..d14b856 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.25.5 + - image: cimg/go:1.25.6 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 041e325..da97bda 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,7 +25,7 @@ jobs: - name: Set up Go uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0 with: - go-version: "1.25.5" + go-version: "1.25.6" - name: Lint uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0 with: @@ -57,7 +57,7 @@ jobs: - name: Set up Go uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0 with: - go-version: "1.25.5" + go-version: "1.25.6" - name: Report health score uses: slackapi/slack-health-score@d58a419f15cdaff97e9aa7f09f95772830ab66f7 # v0.1.1 with: diff --git a/go.mod b/go.mod index 8cba474..ef7a111 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/slackapi/slack-cli -go 1.25.5 +go 1.25.6 require ( github.com/AlecAivazis/survey/v2 v2.3.7