Skip to content

Commit 17c6b73

Browse files
authored
Merge branch 'main' into dependabot/github_actions/codecov/codecov-action-5
2 parents 132d201 + 6a61fd5 commit 17c6b73

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/checkout@v4
1414

1515
- name: Set up Go
16-
uses: actions/setup-go@v5
16+
uses: actions/setup-go@v6
1717
with:
1818
go-version: '1.25.x'
1919
cache: true
@@ -47,7 +47,7 @@ jobs:
4747
uses: actions/checkout@v4
4848

4949
- name: Set up Go
50-
uses: actions/setup-go@v5
50+
uses: actions/setup-go@v6
5151
with:
5252
go-version: '1.25.x'
5353
cache: true
@@ -59,7 +59,7 @@ jobs:
5959
run: go mod tidy
6060

6161
- name: Run golangci-lint
62-
uses: golangci/golangci-lint-action@v3
62+
uses: golangci/golangci-lint-action@v9
6363
with:
6464
version: latest
6565
args: --timeout=5m
@@ -74,7 +74,7 @@ jobs:
7474
uses: actions/checkout@v4
7575

7676
- name: Set up Go
77-
uses: actions/setup-go@v5
77+
uses: actions/setup-go@v6
7878
with:
7979
go-version: '1.25.x'
8080
cache: true
@@ -95,7 +95,7 @@ jobs:
9595
uses: actions/checkout@v4
9696

9797
- name: Set up Go
98-
uses: actions/setup-go@v5
98+
uses: actions/setup-go@v6
9999
with:
100100
go-version: '1.25.x'
101101
cache: true
@@ -124,7 +124,7 @@ jobs:
124124
uses: actions/checkout@v4
125125

126126
- name: Set up Go
127-
uses: actions/setup-go@v5
127+
uses: actions/setup-go@v6
128128
with:
129129
go-version: '1.25.x'
130130
cache: true
@@ -153,7 +153,7 @@ jobs:
153153
uses: docker/setup-buildx-action@v3
154154

155155
- name: Build Docker image (test only)
156-
uses: docker/build-push-action@v5
156+
uses: docker/build-push-action@v7
157157
with:
158158
context: .
159159
platforms: linux/amd64

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
fetch-depth: 0
2121

2222
- name: Set up Go
23-
uses: actions/setup-go@v4
23+
uses: actions/setup-go@v6
2424
with:
2525
go-version: '1.25'
2626

2727
- name: Cache Go modules
28-
uses: actions/cache@v3
28+
uses: actions/cache@v5
2929
with:
3030
path: |
3131
~/.cache/go-build

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.25.0
44

55
require (
66
github.com/bmf-san/go-bitflyer-api-client v1.1.0
7-
github.com/mattn/go-sqlite3 v1.14.22
7+
github.com/mattn/go-sqlite3 v1.14.37
88
github.com/oapi-codegen/runtime v1.2.0
99
gopkg.in/yaml.v3 v3.0.1
1010
)

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
1919
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
2020
github.com/lerenn/asyncapi-codegen v0.46.3 h1:lw1Iou6FTwMYZN6QiZNwsZl0o7sbWl5KZeT0j1GZTpU=
2121
github.com/lerenn/asyncapi-codegen v0.46.3/go.mod h1:vXZMzuQOCB4Owi2CzF08jMrs8XZ055+ulBrPODX3jzQ=
22-
github.com/mattn/go-sqlite3 v1.14.22 h1:2gZY6PC6kBnID23Tichd1K+Z0oS6nE/XwU+Vz/5o4kU=
23-
github.com/mattn/go-sqlite3 v1.14.22/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=
22+
github.com/mattn/go-sqlite3 v1.14.37 h1:3DOZp4cXis1cUIpCfXLtmlGolNLp2VEqhiB/PARNBIg=
23+
github.com/mattn/go-sqlite3 v1.14.37/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=
2424
github.com/oapi-codegen/runtime v1.2.0 h1:RvKc1CVS1QeKSNzO97FBQbSMZyQ8s6rZd+LpmzwHMP4=
2525
github.com/oapi-codegen/runtime v1.2.0/go.mod h1:Y7ZhmmlE8ikZOmuHRRndiIm7nf3xcVv+YMweKgG1DT0=
2626
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=

0 commit comments

Comments
 (0)