Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌱 Upgrade to go 1.19 #961

Merged
merged 1 commit into from Oct 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Expand Up @@ -72,7 +72,7 @@ jobs:
${{ runner.os }}-go-
- uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f #v2.1.5
with:
go-version: '1.17.x'
go-version: '1.19.x'
- name: Run Go verify
run: |
go mod tidy && go mod verify
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Expand Up @@ -22,8 +22,8 @@
# -e GITHUB_REPOSITORY="ossf/scorecard" \
# laurentsimon/scorecard-action:latest

#v1.18 go
FROM golang@sha256:ea3d912d500b1ae0a691b2e53eb8a6345b579d42d7e6a64acca83d274b949740 AS base
#v1.19 go
FROM golang:1.19.2@sha256:c2a98a509c3d901aed78332fa0bf6144b4f9ac2bceff2bc77ddc6bc3b70276a5 AS builder
WORKDIR /src
ENV CGO_ENABLED=0
COPY go.* ./
Expand Down
2 changes: 1 addition & 1 deletion go.mod
@@ -1,6 +1,6 @@
module github.com/ossf/scorecard-action

go 1.18
go 1.19

require (
github.com/caarlos0/env/v6 v6.10.1
Expand Down