1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-18 18:17:03 +00:00

Bump Go to 1.17 (#233)

* Bump Go to 1.17

* update chglog
This commit is contained in:
James Hillyerd
2021-08-22 12:31:13 -07:00
committed by GitHub
parent 752d5c9668
commit 8869acef0b
4 changed files with 7 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.16', '1.15' ]
go: [ '1.17', '1.16' ]
name: Go ${{ matrix.go }} build
steps:
- uses: actions/checkout@v2

View File

@@ -14,7 +14,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.16
go-version: 1.17
- name: Setup Node.js
uses: actions/setup-node@v1
with:

View File

@@ -6,6 +6,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
### Changed
- Bump Go version to 1.17 (#233)
## v3.0.0-rc3 - 2021-08-01

View File

@@ -1,7 +1,7 @@
# Docker build file for Inbucket: https://www.inbucket.org/
# Install build-time dependencies
FROM golang:1.16-alpine3.13 as builder
FROM golang:1.17-alpine3.14 as builder
RUN apk add --no-cache --virtual .build-deps g++ git make npm python3
WORKDIR /build
COPY . .
@@ -24,7 +24,7 @@ WORKDIR /build/ui
RUN npm run build
# Run in minimal image
FROM alpine:3.13
FROM alpine:3.14
RUN apk --no-cache add tzdata
WORKDIR /opt/inbucket
RUN mkdir bin defaults ui