Skip to content

Commit 9683689

Browse files
Merge pull request wimspaargaren#22 from schubergphilis/main
fix: Go version 1.24.0
2 parents a224d3a + cc86fe6 commit 9683689

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,16 @@ updates:
44
- package-ecosystem: "github-actions"
55
directory: "/"
66
schedule:
7-
interval: "monthly"
7+
interval: "weekly"
8+
groups:
9+
github-actions-all:
10+
patterns:
11+
- "*"
812
- package-ecosystem: "gomod"
913
directory: "/"
1014
schedule:
11-
interval: "monthly"
15+
interval: "weekly"
16+
groups:
17+
gomod-all:
18+
patterns:
19+
- "*"

.github/workflows/golang.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,12 @@ jobs:
1616
runs-on: ubuntu-22.04
1717
steps:
1818
- uses: actions/checkout@v4.2.2
19-
- uses: schubergphilis/mcvs-golang-action@v0.10.1
19+
- uses: schubergphilis/mcvs-golang-action@v0.16.3
2020
with:
2121
code-coverage-expected: 62.3
2222
gci: "false"
2323
golang-unit-tests-exclusions: |-
2424
\(cmd\/prolayout\)
25-
golangci-lint-version: v1.61.0
2625
testing-type: ${{ matrix.testing-type }}
2726
strategy:
2827
matrix:

Taskfile.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,9 @@ version: 3
33

44
vars:
55
REMOTE_URL: https://raw.githubusercontent.com
6-
REMOTE_URL_REF: v0.9.4
6+
REMOTE_URL_REF: v0.16.3
77
REMOTE_URL_REPO: schubergphilis/mcvs-golang-action
88

99
includes:
1010
remote: >-
1111
{{.REMOTE_URL}}/{{.REMOTE_URL_REPO}}/{{.REMOTE_URL_REF}}/Taskfile.yml
12-
13-
tasks:
14-
test-all:
15-
deps:
16-
- task: remote:golangci-lint
17-
- task: remote:test

go.mod

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

3-
go 1.23.3
3+
go 1.24.0
44

55
require (
66
github.com/stretchr/testify v1.9.0

0 commit comments

Comments
 (0)