We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa05a2b commit 8650ce9Copy full SHA for 8650ce9
2 files changed
.github/workflows/test.yml
@@ -17,7 +17,10 @@ jobs:
17
build:
18
strategy:
19
matrix:
20
- go-version: [1.21.x, 1.22.x]
+ go-version:
21
+ - 1.21.x # oldest supported (see go.mod)
22
+ - oldstable
23
+ - stable
24
os: [ubuntu-latest, windows-latest, macos-latest]
25
runs-on: ${{ matrix.os }}
26
timeout-minutes: 10
go.mod
@@ -1,5 +1,5 @@
1
module github.com/distribution/reference
2
3
-go 1.20
+go 1.21
4
5
require github.com/opencontainers/go-digest v1.0.0
0 commit comments