Skip to content

Commit

Permalink
Updated to 1.15 and fixed buildkit platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniomika committed Oct 24, 2020
1 parent 454e9ce commit ebe3f4f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@ jobs:
- name: Lint the codebase
uses: golangci/golangci-lint-action@v1
with:
version: v1.27
version: v1.31
args: -E goimports -E godot
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.14
go-version: 1.15
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax = docker/dockerfile:experimental
FROM --platform=$BUILDPLATFORM golang:1.14-alpine as builder
FROM --platform=$BUILDPLATFORM golang:1.15-alpine as builder
LABEL maintainer="Antonio Mika <me@antoniomika.me>"

ENV CGO_ENABLED 0
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/antoniomika/go-starter

go 1.14
go 1.15

require (
github.com/fsnotify/fsnotify v1.4.9
Expand Down

0 comments on commit ebe3f4f

Please sign in to comment.