Skip to content

Commit 7b9f69b

Browse files
author
sapcc-bot
committed
Run go-makefile-maker and autoupdate dependencies
go: upgraded github.com/sapcc/go-api-declarations v1.17.2 => v1.17.3
1 parent fe989f0 commit 7b9f69b

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

.github/workflows/checks.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Check out code
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
- name: Set up Go
2929
uses: actions/setup-go@v5
3030
with:
@@ -34,8 +34,10 @@ jobs:
3434
uses: golangci/golangci-lint-action@v8
3535
with:
3636
version: latest
37+
- name: Delete pre-installed shellcheck
38+
run: sudo rm -f $(which shellcheck)
3739
- name: Run shellcheck
38-
uses: ludeeus/action-shellcheck@2.0.0
40+
run: make run-shellcheck
3941
- name: Dependency Licenses Review
4042
run: make check-dependency-licenses
4143
- name: Check for spelling errors

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Check out code
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
- name: Set up Go
3232
uses: actions/setup-go@v5
3333
with:
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ubuntu-latest
4141
steps:
4242
- name: Check out code
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v5
4444
- name: Set up Go
4545
uses: actions/setup-go@v5
4646
with:

.github/workflows/codeql.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Check out code
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
- name: Set up Go
3232
uses: actions/setup-go@v5
3333
with:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.24
55
require (
66
github.com/gophercloud/gophercloud/v2 v2.7.0
77
github.com/gophercloud/utils/v2 v2.0.0-20250711132455-9770683b100a
8-
github.com/sapcc/go-api-declarations v1.17.2
8+
github.com/sapcc/go-api-declarations v1.17.3
99
)
1010

1111
require (

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ github.com/gophercloud/utils/v2 v2.0.0-20250711132455-9770683b100a h1:erVLycqmez
66
github.com/gophercloud/utils/v2 v2.0.0-20250711132455-9770683b100a/go.mod h1:1mckc18GQSFLRhDy2BjPGkkpbrjxY5iwX/oxpdTE2kw=
77
github.com/majewsky/gg v1.1.0 h1:rvbQAUVJ8Q0RWZF26k3BxQBbQnRj3CdIN+Aaqu1qaJo=
88
github.com/majewsky/gg v1.1.0/go.mod h1:KC7qUlln1VBY90OE0jXMNjXW2b9B4jJ1heYQ08OzeAg=
9-
github.com/sapcc/go-api-declarations v1.17.2 h1:3y29kwKjaxYo816LCBGzvmPGknd7CLCzqd++QdBukJs=
10-
github.com/sapcc/go-api-declarations v1.17.2/go.mod h1:MWmLjmvjftgyAugNUfIhsDsHIzXH1pn32cWLZpiluKg=
9+
github.com/sapcc/go-api-declarations v1.17.3 h1:ILRfsFD9ChSeekyzlDInLMqjC830gBcyK6ULlFdP45I=
10+
github.com/sapcc/go-api-declarations v1.17.3/go.mod h1:MWmLjmvjftgyAugNUfIhsDsHIzXH1pn32cWLZpiluKg=
1111
golang.org/x/sys v0.34.0 h1:H5Y5sJ2L2JRdyv7ROF1he/lPdvFsd0mJHFw2ThKHxLA=
1212
golang.org/x/sys v0.34.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
1313
golang.org/x/text v0.27.0 h1:4fGWRpyh641NLlecmyl4LOe6yDdfaYNrGb2zdfo4JV4=

shell.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ mkShell {
1212
go_1_24
1313
golangci-lint
1414
gotools # goimports
15+
reuse
1516
# keep this line if you use bash
1617
bashInteractive
1718
];

0 commit comments

Comments
 (0)