Skip to content

Commit 9fb196f

Browse files
committed
Update go-releaser config
1 parent 1354361 commit 9fb196f

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/feature.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Go
2020
uses: actions/setup-go@v2
2121
with:
22-
go-version: 1.23
22+
go-version: 1.26
2323

2424
- name: Build
2525
run: go build -v ./...

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Go
1414
uses: actions/setup-go@v2
1515
with:
16-
go-version: 1.23
16+
go-version: 1.26
1717

1818
# - name: Install dependencies
1919
# run: |

.goreleaser.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ brews:
2727
# Default is 6 for all artifacts or each id if there a multiple versions.
2828
goarm: 6
2929

30-
tap:
30+
repository:
3131
owner: aurc
3232
name: homebrew-loggo
3333
branch: main
@@ -45,7 +45,7 @@ brews:
4545

4646
# Folder inside the repository to put the formula.
4747
# Default is the root folder.
48-
folder: Formula
48+
directory: Formula
4949

5050
# Caveats for the user of your binary.
5151
# Default is empty.

go.mod

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

3-
go 1.23
3+
go 1.26
44

55
require (
66
cloud.google.com/go/logging v1.11.0

internal/loggo/splash_screen.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,17 +156,17 @@ func (t *SplashScreen) PrintCanvasAsColorString(foreground, shade rune, foregrou
156156
switch t.canvas[row][col] {
157157
case foreground:
158158
if prev != fg {
159-
sb.WriteString(fmt.Sprintf(foregroundColor))
159+
sb.WriteString(foregroundColor)
160160
prev = fg
161161
}
162162
case shade:
163163
if prev != sh {
164-
sb.WriteString(fmt.Sprintf(shadeColor))
164+
sb.WriteString(shadeColor)
165165
prev = sh
166166
}
167167
default:
168168
if prev != bg {
169-
sb.WriteString(fmt.Sprintf(backgroundColor))
169+
sb.WriteString(backgroundColor)
170170
prev = bg
171171
}
172172
}

0 commit comments

Comments
 (0)