Skip to content

Commit 389f03c

Browse files
committed
upgraded to go version 1.26.0
1 parent f8de3d1 commit 389f03c

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/go.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@ name: tests
22

33
on:
44
push:
5-
branches: [ "master" ]
5+
branches: [ "main" ]
66

77
jobs:
88
test:
99
name: Test
1010
strategy:
1111
matrix:
1212
os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
13-
go-version: [ "1.23.1" ]
13+
go-version: [ "1.26.0" ]
1414
runs-on: ${{ matrix.os }}
1515
steps:
1616
-
1717
name: setup Go ${{ matrix.go-version }}
18-
uses: actions/setup-go@v3
18+
uses: actions/setup-go@v6
1919
with:
2020
go-version: ${{ matrix.go-version }}
2121
-
2222
name: checkout
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v5
2424
-
2525
name: simple test
2626
run: go test -v
@@ -37,11 +37,11 @@ jobs:
3737
runs-on: ubuntu-latest
3838
steps:
3939
- name: setup Go
40-
uses: actions/setup-go@v3
40+
uses: actions/setup-go@v6
4141
with:
42-
go-version: 1.23.1
42+
go-version: 1.26.0
4343
- name: checkout
44-
uses: actions/checkout@v3
44+
uses: actions/checkout@v5
4545
- name: measure coverage
4646
run: go test -v -coverprofile=coverage.out
4747
- name: report coverage

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [yyyy] [name of copyright owner]
189+
Copyright [2017-2026] [Jeff Foley]
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
module github.com/caffix/pipeline
22

3-
go 1.24.0
3+
go 1.26.0
44

55
require (
6-
github.com/caffix/queue v0.4.0
7-
github.com/caffix/stringset v0.2.1-0.20251119025138-9044e6b53d5b
6+
github.com/caffix/queue v0.4.1-0.20260303044231-38e3190f084d
7+
github.com/caffix/stringset v0.2.1-0.20260303042913-c1dce569c290
88
github.com/hashicorp/go-multierror v1.1.1
99
)
1010

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
github.com/caffix/queue v0.4.0 h1:bwy0rCyppFk0gS38/pNxW/dk1b9gYVddpa30p6WnOYM=
2-
github.com/caffix/queue v0.4.0/go.mod h1:YUMHaAiT5HiZeJylaaCXCko1FW9LV7WNfw5EjWVWdo0=
3-
github.com/caffix/stringset v0.2.1-0.20251119025138-9044e6b53d5b h1:zJbdnhRVCLJrV559afg3YU5rci0vL2i0UoARxf3TzPQ=
4-
github.com/caffix/stringset v0.2.1-0.20251119025138-9044e6b53d5b/go.mod h1:dnXtfiDQ0Q5appncY9XoLiy+jGv+ET+Dv7D40BISIBU=
1+
github.com/caffix/queue v0.4.1-0.20260303044231-38e3190f084d h1:gOj4O04Z7gIg/EMM3r/Yobzhu15btgCDvcH+uOZfCv8=
2+
github.com/caffix/queue v0.4.1-0.20260303044231-38e3190f084d/go.mod h1:TG0xRz5IXKbo/YDDBlHTGYWVvO6RES2yqBXF+xuP0wg=
3+
github.com/caffix/stringset v0.2.1-0.20260303042913-c1dce569c290 h1:dW8bxf12VhfzIKIIsEDLMvTzR8Ts2fLLOplo+nNuwes=
4+
github.com/caffix/stringset v0.2.1-0.20260303042913-c1dce569c290/go.mod h1:7vfonc1Ha23yE4MutmEjnP/DD9w6yMB+n9Frr4URfeU=
55
github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
66
github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I=
77
github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=

0 commit comments

Comments
 (0)