Skip to content

Commit aae77de

Browse files
authored
Merge branch 'main' into mbrooks-slackcontext
2 parents 6c8907a + f2f33c4 commit aae77de

File tree

5 files changed

+15
-13
lines changed

5 files changed

+15
-13
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
default: "dev-build"
110110
docker: # run the steps with Docker
111111
# CircleCI Go images available at: https://hub.docker.com/r/circleci/golang/
112-
- image: cimg/go:1.24.1
112+
- image: cimg/go:1.24.2
113113
steps: # steps that comprise the `build` job
114114
- checkout # check out source code to working directory
115115
- restore_cache: # restores saved cache if no changes are detected since last run
@@ -139,7 +139,7 @@ jobs:
139139
mkdir -p ~/bin
140140
installPath=~/bin
141141
142-
dlURL="https://github.com/goreleaser/goreleaser/releases/download/v2.5.1/goreleaser_Linux_x86_64.tar.gz"
142+
dlURL="https://github.com/goreleaser/goreleaser/releases/download/v2.8.2/goreleaser_Linux_x86_64.tar.gz"
143143
curl -sSL $dlURL | tar -xz -C ${installPath} goreleaser
144144
- run:
145145
name: Check GoReleaser is install success

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Set up Go
2929
uses: actions/setup-go@v5
3030
with:
31-
go-version: "1.24.1"
31+
go-version: "1.24.2"
3232
- name: Lint
3333
uses: golangci/golangci-lint-action@v7
3434
with:
@@ -54,7 +54,7 @@ jobs:
5454
- name: Set up Go
5555
uses: actions/setup-go@v5
5656
with:
57-
go-version: "1.24.1"
57+
go-version: "1.24.2"
5858
- name: Report health score
5959
uses: slackapi/slack-health-score@v0
6060
with:

.goreleaser-dev.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ archives:
5353
- slack-macos
5454
format_overrides:
5555
- goos: windows
56-
format: zip
56+
formats:
57+
- zip
5758
name_template: >-
5859
{{- .ProjectName }}_
5960
{{- .Env.BUILD_VERSION }}_
@@ -64,7 +65,7 @@ archives:
6465
{{- else }}{{ .Arch }}{{ end }}
6566
6667
snapshot:
67-
version_template: "{{.Env.BUILD_VERSION}}"
68+
version_template: "{{ .Env.BUILD_VERSION }}"
6869

6970
release:
7071
disable: true

.goreleaser.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ before:
2121
- go mod tidy -v
2222

2323
builds:
24-
- binary: bin/slack
25-
id: slack
24+
- id: slack
25+
binary: bin/slack
2626
ldflags:
2727
- "{{.Env.LDFLAGS}}"
2828
env:
@@ -33,8 +33,8 @@ builds:
3333
goarch:
3434
- amd64
3535

36-
- binary: bin/slack
37-
id: slack-macos
36+
- id: slack-macos
37+
binary: bin/slack
3838
ldflags:
3939
- "{{.Env.LDFLAGS}}"
4040
goos:
@@ -48,12 +48,13 @@ builds:
4848
'
4949
archives:
5050
- id: slack
51-
builds:
51+
ids:
5252
- slack
5353
- slack-macos
5454
format_overrides:
5555
- goos: windows
56-
format: zip
56+
formats:
57+
- zip
5758
files:
5859
- LICENSE
5960
name_template: >-

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/slackapi/slack-cli
22

3-
go 1.24.1
3+
go 1.24.2
44

55
require (
66
github.com/AlecAivazis/survey/v2 v2.3.7

0 commit comments

Comments
 (0)