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

Bump golang/go from go1.20.1 to 1.21.0 #383

Merged
merged 2 commits into from
Aug 26, 2023
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# When we update the base image version (which we do manually, prompted by Dependabot
# notifying us of a new Go version), make sure our new base images is listed at:
# https://hub.docker.com/_/golang
FROM golang:1.20.1-bullseye
FROM golang:1.21.0-bullseye

# This Dockerfile adds a non-root user with sudo access. Use the "remoteUser"
# property in devcontainer.json to use it. On Linux, the container user's GID/UIDs
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/dependabot_hack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ jobs:
# 4. integration_test.yml
# 5. virtual_test.yml
# 6. the go.mod (if it is a major or minor version change e.g. 1.14 to 1.15)
# NB bear in mind there is no `.0` patch level version, i.e. use 1.15 not 1.15.0
- uses: golang/go@go1.20.1
- uses: golang/go@go1.21.0

# update the versions in the devcontainer Dockerfile manually, too
- uses: golang/tools@gopls/v0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github_tag_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.20.1
go-version: '1.21.0'
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2.6.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.20.1
go-version: '1.21.0'
- name: Checkout code
uses: actions/checkout@v3
- name: Tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/virtual_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.20.1
go-version: '1.21.0'
- name: Checkout code
uses: actions/checkout@v3
- name: Install Hoverfly
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20.1-bullseye AS builder
FROM golang:1.21.0-bullseye AS builder

WORKDIR /src
COPY . .
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module github.com/agilepathway/label-checker

// major and minor version only - don't specify at patch level (e.g. don't put 1.14.7)
go 1.20
go 1.21

require (
github.com/shurcooL/githubv4 v0.0.0-20230215024106-420ad0987b9b
Expand Down
Loading