Skip to content

Commit 74119b2

Browse files
fix(deps): update go to 1.21 (#738)
Fixing the existing PR #498 to also change the github actions to use the go 1.21 sourced directly from `go.mod`. - https://github.com/slsa-framework/slsa-github-generator/blob/07e64b653f10a80b6510f4568f685f8b7b9ea830/.github/workflows/builder_go_slsa3.yml#L56 - https://github.com/actions/setup-go?tab=readme-ov-file#getting-go-version-from-the-gomod-file - https://github.com/slsa-framework/slsa-verifier/actions/runs/7559933600/job/20584856777?pr=498 > ... Error: We were unable to automatically build your code. Please replace the call to the autobuild action with your custom build steps. Encountered a fatal error while running "/opt/hostedtoolcache/CodeQL/2.15.5/x64/codeql/go/tools/autobuild.sh". Exit code was 1 and error was: 2024/01/17 18:06:58 Autobuilder was built with go1.21.5, environment has go1.20.12 ... Also fixing some more lint checks about repeated strings --------- Signed-off-by: Mend Renovate <[email protected]> Signed-off-by: Ramon Petgrave <[email protected]> Co-authored-by: Mend Renovate <[email protected]>
1 parent 9b2467f commit 74119b2

File tree

10 files changed

+435
-413
lines changed

10 files changed

+435
-413
lines changed

.github/workflows/codeql-analysis.yml

+8
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,14 @@ jobs:
4242
- name: Checkout repository
4343
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
4444

45+
# TODO(#740): Workaround for go1.21 compatibility. Remove when GHA runners have Go 1.21+.
46+
- name: setup-go
47+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
48+
with:
49+
go-version-file: "go.mod"
50+
# not needed but gets rid of warnings
51+
cache: false
52+
4553
# Initializes the CodeQL tools for scanning.
4654
- name: Initialize CodeQL
4755
uses: github/codeql-action/init@fdcae64e1484d349b3366718cdfef3d404390e85 # v2.22.1

.github/workflows/pre-submit.cli.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@ jobs:
1818
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
1919

2020
- name: setup-go
21-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
21+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
2222
with:
2323
go-version-file: "go.mod"
24+
# not needed but gets rid of warnings
25+
cache: false
2426

2527
- name: Save event name
2628
env:

.github/workflows/pre-submit.e2e.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@ jobs:
1616
path: __THIS_REPO__
1717

1818
- name: setup-go
19-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
19+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
2020
with:
2121
go-version-file: "__THIS_REPO__/go.mod"
22+
# not needed but gets rid of warnings
23+
cache: false
2224

2325
- name: Build verifier at HEAD
2426
working-directory: __THIS_REPO__

.github/workflows/pre-submit.lint.yml

+10-17
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,18 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
14-
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
14+
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
1515
with:
1616
go-version-file: "go.mod"
17-
- env:
18-
GOLANGCI_LINT_VERSION: "1.53.2"
19-
GOLANGCI_LINT_CHECKSUM: "2298f73b9bc03b88b91fee06c5d519fc7f9d7f328e2c388615bbd7e85a9d6cae"
20-
run: |
21-
set -euo pipefail
22-
23-
#Install golangci-lint
24-
curl -sSLo golangci-lint.tar.gz "https://github.com/golangci/golangci-lint/releases/download/v${GOLANGCI_LINT_VERSION}/golangci-lint-${GOLANGCI_LINT_VERSION}-linux-amd64.tar.gz"
25-
echo "golangci-lint checksum is $(sha256sum golangci-lint.tar.gz | awk '{ print $1 }')"
26-
echo "expected checksum is $GOLANGCI_LINT_CHECKSUM"
27-
echo "$GOLANGCI_LINT_CHECKSUM golangci-lint.tar.gz" | sha256sum --strict --check --status || exit -2
28-
tar xf golangci-lint.tar.gz
29-
mv golangci-lint-${GOLANGCI_LINT_VERSION}-linux-amd64/golangci-lint /usr/local/bin
30-
31-
# Run golangci-lint
32-
make golangci-lint
17+
# not needed but gets rid of warnings
18+
cache: false
19+
- uses: golangci/golangci-lint-action@v3
20+
name: golangci-lint
21+
with:
22+
# Require: The version of golangci-lint to use.
23+
# When `install-mode` is `binary` (default) the value can be v1.2 or v1.2.3 or `latest` to use the latest version.
24+
# When `install-mode` is `goinstall` the value can be v1.2.3, `latest`, or the hash of a commit.
25+
version: v1.55.2
3326

3427
yamllint:
3528
runs-on: ubuntu-latest

.github/workflows/release.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,7 @@ jobs:
5151
contents: write # For asset uploads.
5252
uses: slsa-framework/slsa-github-generator/.github/workflows/[email protected]
5353
with:
54-
# TODO(2680): re-enable go-version-file
55-
# go-version-file: "go.mod"
56-
go-version: '1.20'
54+
go-version-file: "go.mod"
5755
config-file: .slsa-goreleaser/${{matrix.os}}-${{matrix.arch}}.yml
5856
compile-builder: true
5957
evaluated-envs: "VERSION:${{needs.args.outputs.version}}"

go.mod

+78-78
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,30 @@
11
module github.com/slsa-framework/slsa-verifier/v2
22

3-
go 1.20
3+
go 1.21
4+
5+
toolchain go1.21.6
46

57
require (
68
github.com/docker/go v1.5.1-1
7-
github.com/go-openapi/runtime v0.26.0
8-
github.com/google/go-cmp v0.5.9
9-
github.com/google/trillian v1.5.2 // indirect
9+
github.com/go-openapi/runtime v0.26.2
10+
github.com/google/go-cmp v0.6.0
11+
github.com/google/trillian v1.5.3 // indirect
1012
github.com/in-toto/in-toto-golang v0.9.0
11-
github.com/secure-systems-lab/go-securesystemslib v0.7.0
12-
github.com/sigstore/rekor v1.2.2
13-
github.com/sigstore/sigstore v1.7.2
13+
github.com/secure-systems-lab/go-securesystemslib v0.8.0
14+
github.com/sigstore/rekor v1.3.4
15+
github.com/sigstore/sigstore v1.8.1
1416
)
1517

1618
require (
17-
github.com/go-openapi/strfmt v0.21.7
18-
github.com/go-openapi/swag v0.22.4
19-
github.com/google/go-containerregistry v0.16.1
20-
github.com/gorilla/mux v1.8.0
19+
github.com/go-openapi/strfmt v0.22.0
20+
github.com/go-openapi/swag v0.22.7
21+
github.com/google/go-containerregistry v0.18.0
22+
github.com/gorilla/mux v1.8.1
2123
github.com/sigstore/cosign/v2 v2.2.0
22-
github.com/slsa-framework/slsa-github-generator v1.4.0
23-
github.com/spf13/cobra v1.7.0
24-
golang.org/x/mod v0.13.0
25-
sigs.k8s.io/release-utils v0.7.4
24+
github.com/slsa-framework/slsa-github-generator v1.9.0
25+
github.com/spf13/cobra v1.8.0
26+
golang.org/x/mod v0.14.0
27+
sigs.k8s.io/release-utils v0.7.7
2628
)
2729

2830
require (
@@ -32,22 +34,25 @@ require (
3234
github.com/digitorus/pkcs7 v0.0.0-20230818184609-3a137a874352 // indirect
3335
github.com/digitorus/timestamp v0.0.0-20230821155606-d1ad5ca9624c // indirect
3436
github.com/emicklei/go-restful/v3 v3.10.2 // indirect
35-
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
3637
github.com/google/gnostic v0.5.7-v3refs // indirect
3738
github.com/google/go-github/v53 v53.2.0 // indirect
38-
github.com/google/uuid v1.3.0 // indirect
39+
github.com/google/uuid v1.5.0 // indirect
3940
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4041
github.com/nozzle/throttler v0.0.0-20180817012639-2ea982251481 // indirect
42+
github.com/sagikazarmark/locafero v0.3.0 // indirect
43+
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
4144
github.com/sigstore/timestamp-authority v1.1.2 // indirect
45+
github.com/sourcegraph/conc v0.3.0 // indirect
4246
github.com/transparency-dev/merkle v0.0.2 // indirect
43-
go.opentelemetry.io/otel/metric v1.16.0 // indirect
44-
go.step.sm/crypto v0.35.0 // indirect
45-
google.golang.org/genproto/googleapis/api v0.0.0-20230803162519-f966b187b2e5 // indirect
46-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230807174057-1744710a1577 // indirect
47+
go.opentelemetry.io/otel/metric v1.19.0 // indirect
48+
go.step.sm/crypto v0.38.0 // indirect
49+
google.golang.org/genproto/googleapis/api v0.0.0-20231106174013-bbf56f31fb17 // indirect
50+
google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f // indirect
51+
gopkg.in/go-jose/go-jose.v2 v2.6.1 // indirect
4752
)
4853

4954
require (
50-
cloud.google.com/go/compute v1.23.0 // indirect
55+
cloud.google.com/go/compute v1.23.3 // indirect
5156
cloud.google.com/go/compute/metadata v0.2.3 // indirect
5257
github.com/AliyunContainerService/ack-ram-tool/pkg/credentials/alibabacloudsdkgo/helper v0.2.0 // indirect
5358
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible // indirect
@@ -72,49 +77,46 @@ require (
7277
github.com/alibabacloud-go/tea-xml v1.1.2 // indirect
7378
github.com/aliyun/credentials-go v1.2.3 // indirect
7479
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
75-
github.com/aws/aws-sdk-go-v2 v1.20.0 // indirect
76-
github.com/aws/aws-sdk-go-v2/config v1.18.32 // indirect
77-
github.com/aws/aws-sdk-go-v2/credentials v1.13.31 // indirect
78-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.7 // indirect
79-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.37 // indirect
80-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.31 // indirect
81-
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.38 // indirect
80+
github.com/aws/aws-sdk-go-v2 v1.21.2 // indirect
81+
github.com/aws/aws-sdk-go-v2/config v1.19.1 // indirect
82+
github.com/aws/aws-sdk-go-v2/credentials v1.13.43 // indirect
83+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.13 // indirect
84+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.43 // indirect
85+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.37 // indirect
86+
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.45 // indirect
8287
github.com/aws/aws-sdk-go-v2/service/ecr v1.15.0 // indirect
8388
github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.12.0 // indirect
84-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.31 // indirect
85-
github.com/aws/aws-sdk-go-v2/service/sso v1.13.1 // indirect
86-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.15.1 // indirect
87-
github.com/aws/aws-sdk-go-v2/service/sts v1.21.1 // indirect
88-
github.com/aws/smithy-go v1.14.0 // indirect
89+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.37 // indirect
90+
github.com/aws/aws-sdk-go-v2/service/sso v1.15.2 // indirect
91+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.17.3 // indirect
92+
github.com/aws/aws-sdk-go-v2/service/sts v1.23.2 // indirect
93+
github.com/aws/smithy-go v1.15.0 // indirect
8994
github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20220228164355-396b2034c795 // indirect
9095
github.com/blang/semver v3.5.1+incompatible // indirect
9196
github.com/chrismellard/docker-credential-acr-env v0.0.0-20220119192733-fe33c00cee21 // indirect
9297
github.com/clbanning/mxj/v2 v2.5.6 // indirect
9398
github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be // indirect
9499
github.com/containerd/stargz-snapshotter/estargz v0.14.3 // indirect
95-
github.com/coreos/go-oidc/v3 v3.6.0 // indirect
100+
github.com/coreos/go-oidc/v3 v3.9.0 // indirect
96101
github.com/cyberphone/json-canonicalization v0.0.0-20220623050100-57a0ce2678a7 // indirect
97-
github.com/davecgh/go-spew v1.1.1 // indirect
102+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
98103
github.com/dimchansky/utfbom v1.1.1 // indirect
99104
github.com/docker/cli v24.0.0+incompatible // indirect
100-
github.com/docker/distribution v2.8.2+incompatible // indirect
101-
github.com/docker/docker v24.0.0+incompatible // indirect
105+
github.com/docker/distribution v2.8.3+incompatible // indirect
106+
github.com/docker/docker v24.0.7+incompatible // indirect
102107
github.com/docker/docker-credential-helpers v0.7.0 // indirect
103108
github.com/fsnotify/fsnotify v1.6.0 // indirect
104109
github.com/go-chi/chi v4.1.2+incompatible // indirect
105-
github.com/go-jose/go-jose/v3 v3.0.0 // indirect
106-
github.com/go-logr/logr v1.2.4 // indirect
110+
github.com/go-jose/go-jose/v3 v3.0.1 // indirect
111+
github.com/go-logr/logr v1.3.0 // indirect
107112
github.com/go-logr/stdr v1.2.2 // indirect
108113
github.com/go-openapi/analysis v0.21.4 // indirect
109-
github.com/go-openapi/errors v0.20.4 // indirect
110-
github.com/go-openapi/jsonpointer v0.19.6 // indirect
114+
github.com/go-openapi/errors v0.21.0 // indirect
115+
github.com/go-openapi/jsonpointer v0.20.0 // indirect
111116
github.com/go-openapi/jsonreference v0.20.2 // indirect
112117
github.com/go-openapi/loads v0.21.2 // indirect
113-
github.com/go-openapi/spec v0.20.9 // indirect
114-
github.com/go-openapi/validate v0.22.1 // indirect
115-
github.com/go-playground/locales v0.14.1 // indirect
116-
github.com/go-playground/universal-translator v0.18.1 // indirect
117-
github.com/go-playground/validator/v10 v10.15.1 // indirect
118+
github.com/go-openapi/spec v0.20.11 // indirect
119+
github.com/go-openapi/validate v0.22.3 // indirect
118120
github.com/gogo/protobuf v1.3.2 // indirect
119121
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
120122
github.com/golang/protobuf v1.5.3 // indirect
@@ -123,17 +125,16 @@ require (
123125
github.com/google/go-querystring v1.1.0 // indirect
124126
github.com/google/gofuzz v1.2.0 // indirect
125127
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
126-
github.com/hashicorp/go-retryablehttp v0.7.4 // indirect
128+
github.com/hashicorp/go-retryablehttp v0.7.5 // indirect
127129
github.com/hashicorp/hcl v1.0.0 // indirect
128-
github.com/imdario/mergo v0.3.15 // indirect
130+
github.com/imdario/mergo v0.3.16 // indirect
129131
github.com/inconshreveable/mousetrap v1.1.0 // indirect
130132
github.com/jedisct1/go-minisign v0.0.0-20211028175153-1c139d1cc84b // indirect
131133
github.com/jmespath/go-jmespath v0.4.0 // indirect
132134
github.com/josharian/intern v1.0.0 // indirect
133135
github.com/json-iterator/go v1.1.12 // indirect
134-
github.com/klauspost/compress v1.16.5 // indirect
135-
github.com/leodido/go-urn v1.2.4 // indirect
136-
github.com/letsencrypt/boulder v0.0.0-20221109233200-85aa52084eaf // indirect
136+
github.com/klauspost/compress v1.17.0 // indirect
137+
github.com/letsencrypt/boulder v0.0.0-20230907030200-6d76a0f91e1e // indirect
137138
github.com/magiconair/properties v1.8.7 // indirect
138139
github.com/mailru/easyjson v0.7.7 // indirect
139140
github.com/miekg/pkcs11 v1.1.1 // indirect
@@ -144,48 +145,47 @@ require (
144145
github.com/mozillazg/docker-credential-acr-helper v0.3.0 // indirect
145146
github.com/oklog/ulid v1.3.1 // indirect
146147
github.com/opencontainers/go-digest v1.0.0 // indirect
147-
github.com/opencontainers/image-spec v1.1.0-rc4 // indirect
148+
github.com/opencontainers/image-spec v1.1.0-rc5 // indirect
148149
github.com/opentracing/opentracing-go v1.2.0 // indirect
149-
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
150+
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
150151
github.com/pkg/errors v0.9.1 // indirect
151152
github.com/sassoftware/relic v7.2.1+incompatible // indirect
152153
github.com/segmentio/ksuid v1.0.4 // indirect
153154
github.com/shibumi/go-pathspec v1.3.0 // indirect
154-
github.com/sigstore/fulcio v1.4.0
155-
github.com/sigstore/protobuf-specs v0.1.1-0.20230518173429-5ef54068bb53
155+
github.com/sigstore/fulcio v1.4.3
156+
github.com/sigstore/protobuf-specs v0.2.1
156157
github.com/sirupsen/logrus v1.9.3 // indirect
157158
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966 // indirect
158-
github.com/spf13/afero v1.9.5 // indirect
159+
github.com/spf13/afero v1.10.0 // indirect
159160
github.com/spf13/cast v1.5.1 // indirect
160-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
161161
github.com/spf13/pflag v1.0.5 // indirect
162-
github.com/spf13/viper v1.16.0 // indirect
163-
github.com/subosito/gotenv v1.4.2 // indirect
162+
github.com/spf13/viper v1.17.0 // indirect
163+
github.com/subosito/gotenv v1.6.0 // indirect
164164
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect
165165
github.com/thales-e-security/pool v0.0.2 // indirect
166-
github.com/theupdateframework/go-tuf v0.6.1 // indirect
166+
github.com/theupdateframework/go-tuf v0.7.0 // indirect
167167
github.com/titanous/rocacheck v0.0.0-20171023193734-afe73141d399 // indirect
168168
github.com/tjfoc/gmsm v1.3.2 // indirect
169169
github.com/vbatts/tar-split v0.11.3 // indirect
170170
github.com/xanzy/go-gitlab v0.90.0 // indirect
171-
go.mongodb.org/mongo-driver v1.11.3 // indirect
172-
go.opentelemetry.io/otel v1.16.0 // indirect
173-
go.opentelemetry.io/otel/trace v1.16.0 // indirect
171+
go.mongodb.org/mongo-driver v1.13.1 // indirect
172+
go.opentelemetry.io/otel v1.19.0 // indirect
173+
go.opentelemetry.io/otel/trace v1.19.0 // indirect
174174
go.uber.org/multierr v1.11.0 // indirect
175-
go.uber.org/zap v1.25.0 // indirect
176-
golang.org/x/crypto v0.12.0 // indirect
175+
go.uber.org/zap v1.26.0 // indirect
176+
golang.org/x/crypto v0.18.0 // indirect
177177
golang.org/x/exp v0.0.0-20231006140011-7918f672742d
178-
golang.org/x/net v0.14.0 // indirect
179-
golang.org/x/oauth2 v0.11.0 // indirect
180-
golang.org/x/sync v0.3.0 // indirect
181-
golang.org/x/sys v0.13.0 // indirect
182-
golang.org/x/term v0.11.0 // indirect
183-
golang.org/x/text v0.12.0 // indirect
184-
golang.org/x/time v0.3.0 // indirect
185-
google.golang.org/appengine v1.6.7 // indirect
186-
google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5 // indirect
187-
google.golang.org/grpc v1.57.0 // indirect
188-
google.golang.org/protobuf v1.31.0
178+
golang.org/x/net v0.20.0 // indirect
179+
golang.org/x/oauth2 v0.16.0 // indirect
180+
golang.org/x/sync v0.5.0 // indirect
181+
golang.org/x/sys v0.16.0 // indirect
182+
golang.org/x/term v0.16.0 // indirect
183+
golang.org/x/text v0.14.0 // indirect
184+
golang.org/x/time v0.5.0 // indirect
185+
google.golang.org/appengine v1.6.8 // indirect
186+
google.golang.org/genproto v0.0.0-20231106174013-bbf56f31fb17 // indirect
187+
google.golang.org/grpc v1.59.0 // indirect
188+
google.golang.org/protobuf v1.32.0
189189
gopkg.in/inf.v0 v0.9.1 // indirect
190190
gopkg.in/ini.v1 v1.67.0 // indirect
191191
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
@@ -199,5 +199,5 @@ require (
199199
k8s.io/utils v0.0.0-20230505201702-9f6742963106 // indirect
200200
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
201201
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
202-
sigs.k8s.io/yaml v1.3.0 // indirect
202+
sigs.k8s.io/yaml v1.4.0 // indirect
203203
)

0 commit comments

Comments
 (0)