Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

updated go version of the builder Dockerfile #164

Merged
merged 2 commits into from
May 29, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
name: Release
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.17
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.17
go-version: 1.18
id: go

- name: Checkout Code
uses: actions/checkout@v3

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
env:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.17
FROM golang:1.18

EXPOSE 3000

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.slim.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.17-alpine
FROM golang:1.18-alpine

EXPOSE 3000

Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require (
github.com/BurntSushi/toml v1.1.0
github.com/fatih/color v1.13.0
github.com/gobuffalo/attrs v1.0.1
github.com/gobuffalo/buffalo-pop/v3 v3.0.3
github.com/gobuffalo/buffalo-pop/v3 v3.0.4
github.com/gobuffalo/clara/v2 v2.0.5
github.com/gobuffalo/envy v1.10.1
github.com/gobuffalo/events v1.4.2
Expand All @@ -25,7 +25,7 @@ require (
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v1.4.0
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.11.0
github.com/spf13/viper v1.12.0
github.com/stretchr/testify v1.7.1
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3
golang.org/x/sync v0.0.0-20220513210516-0976fa681c29
Expand Down
Loading