Skip to content

Commit 81c9ce0

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/setup-go-6
2 parents bf51b31 + 8be41e5 commit 81c9ce0

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

.github/workflows/go-test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,21 @@ on:
66
pull_request:
77
branches: [main]
88

9+
permissions:
10+
contents: read
11+
912
jobs:
1013
test:
1114
name: Run Tests
1215
runs-on: ubuntu-latest
1316

1417
steps:
15-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1619

1720
- name: Set up Go
1821
uses: actions/setup-go@v6
1922
with:
2023
go-version-file: "go.mod"
21-
cache: true
2224

2325
- name: Install dependencies
2426
run: go mod download

.github/workflows/lint.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,16 @@ on:
66
pull_request:
77
branches: [main]
88

9+
permissions:
10+
contents: read
11+
912
jobs:
1013
lint:
1114
name: Lint and Check Formatting
1215
runs-on: ubuntu-latest
1316

1417
steps:
15-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1619

1720
- name: Set up Go
1821
uses: actions/setup-go@v6
@@ -27,7 +30,7 @@ jobs:
2730
run: go generate .
2831

2932
- name: Lint with golangci-lint
30-
uses: golangci/golangci-lint-action@v8
33+
uses: golangci/golangci-lint-action@v9
3134
with:
3235
version: latest
3336

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ require (
1313
github.com/hashicorp/go-multierror v1.1.1
1414
github.com/jackc/pgx/v5 v5.7.6
1515
github.com/joho/godotenv v1.5.1
16-
github.com/mattn/go-sqlite3 v1.14.28
16+
github.com/mattn/go-sqlite3 v1.14.32
1717
github.com/posthog/posthog-go v1.6.13
1818
github.com/redis/rueidis v1.0.68
1919
github.com/samber/lo v1.52.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@ github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWE
174174
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
175175
github.com/mattn/go-runewidth v0.0.9 h1:Lm995f3rfxdpd6TSmuVCHVb/QhupuXlYr8sCI/QdE+0=
176176
github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI=
177-
github.com/mattn/go-sqlite3 v1.14.28 h1:ThEiQrnbtumT+QMknw63Befp/ce/nUPgBPMlRFEum7A=
178-
github.com/mattn/go-sqlite3 v1.14.28/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=
177+
github.com/mattn/go-sqlite3 v1.14.32 h1:JD12Ag3oLy1zQA+BNn74xRgaBbdhbNIDYvQUEuuErjs=
178+
github.com/mattn/go-sqlite3 v1.14.32/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=
179179
github.com/mitchellh/go-wordwrap v1.0.1 h1:TLuKupo69TCn6TQSyGxwI1EblZZEsQ0vMlAFQflz0v0=
180180
github.com/mitchellh/go-wordwrap v1.0.1/go.mod h1:R62XHJLzvMFRBbcrT7m7WgmE1eOyTSsCt+hzestvNj0=
181181
github.com/moby/docker-image-spec v1.3.1 h1:jMKff3w6PgbfSa69GfNg+zN/XLhfXJGnEx3Nl2EsFP0=

0 commit comments

Comments
 (0)