Skip to content

Commit

Permalink
Update everything to Go 1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinmclean committed Sep 3, 2024
1 parent 463cd9a commit e003da4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// README at: https://github.com/devcontainers/templates/tree/main/src/go
{
"name": "automated-garden",
"image": "mcr.microsoft.com/devcontainers/go:1-1.22-bullseye",
"image": "mcr.microsoft.com/devcontainers/go:1-1.23-bullseye",
"features": {
"ghcr.io/devcontainers/features/sshd:1": {
"version": "latest"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.22"
go-version: "1.23"
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
go-version: "1.23"

- name: Test
run: task -t GithubActionTasks.yml main:unit-test
Expand All @@ -62,7 +62,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
go-version: "1.23"

- name: Integration Test
run: task -t GithubActionTasks.yml main:integration-test
Expand Down
2 changes: 1 addition & 1 deletion garden-app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

# build go app
FROM golang:1.22-alpine AS build
FROM golang:1.23-alpine AS build
RUN mkdir /build
ADD . /build
WORKDIR /build
Expand Down

0 comments on commit e003da4

Please sign in to comment.