Skip to content

Commit 38e3190

Browse files
committed
updates
1 parent cd07f0e commit 38e3190

6 files changed

Lines changed: 14 additions & 14 deletions

File tree

.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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module github.com/caffix/queue
22

3-
go 1.24.0
3+
go 1.26.0
44

5-
require github.com/caffix/stringset v0.2.1-0.20251119025138-9044e6b53d5b
5+
require github.com/caffix/stringset v0.2.1-0.20260303042913-c1dce569c290

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github.com/caffix/stringset v0.2.1-0.20251119025138-9044e6b53d5b h1:zJbdnhRVCLJrV559afg3YU5rci0vL2i0UoARxf3TzPQ=
2-
github.com/caffix/stringset v0.2.1-0.20251119025138-9044e6b53d5b/go.mod h1:dnXtfiDQ0Q5appncY9XoLiy+jGv+ET+Dv7D40BISIBU=
1+
github.com/caffix/stringset v0.2.1-0.20260303042913-c1dce569c290 h1:dW8bxf12VhfzIKIIsEDLMvTzR8Ts2fLLOplo+nNuwes=
2+
github.com/caffix/stringset v0.2.1-0.20260303042913-c1dce569c290/go.mod h1:7vfonc1Ha23yE4MutmEjnP/DD9w6yMB+n9Frr4URfeU=

queue.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © by Jeff Foley 2017-2025. All rights reserved.
1+
// Copyright © by Jeff Foley 2017-2026. All rights reserved.
22
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
33
// SPDX-License-Identifier: Apache-2.0
44

queue_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © by Jeff Foley 2017-2025. All rights reserved.
1+
// Copyright © by Jeff Foley 2017-2026. All rights reserved.
22
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
33
// SPDX-License-Identifier: Apache-2.0
44

0 commit comments

Comments
 (0)