mirror of
https://github.com/tarampampam/error-pages.git
synced 2024-08-30 18:22:40 +00:00
Bump golang from 1.17.7-alpine to 1.18.0-alpine (#76)
This commit is contained in:
parent
4b83ce7d09
commit
6c0885a5d3
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -15,7 +15,7 @@ jobs:
|
||||
arch: [amd64] # amd64, 386
|
||||
steps:
|
||||
- uses: actions/setup-go@v2
|
||||
with: {go-version: 1.17.7}
|
||||
with: {go-version: 1.18.0}
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
|
6
.github/workflows/tests.yml
vendored
6
.github/workflows/tests.yml
vendored
@ -25,7 +25,7 @@ jobs: # Docs: <https://git.io/JvxXE>
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: actions/setup-go@v2
|
||||
with: {go-version: 1.17}
|
||||
with: {go-version: 1.17} # On v1.18 I had an error "panic: load embedded ruleguard rules: rules/rules.go:13: can't load fmt"
|
||||
|
||||
- name: Run linter
|
||||
uses: golangci/golangci-lint-action@v3 # Action page: <https://github.com/golangci/golangci-lint-action>
|
||||
@ -53,7 +53,7 @@ jobs: # Docs: <https://git.io/JvxXE>
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/setup-go@v2
|
||||
with: {go-version: 1.17}
|
||||
with: {go-version: 1.18}
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
with: {fetch-depth: 2} # Fixes codecov error 'Issue detecting commit SHA'
|
||||
@ -89,7 +89,7 @@ jobs: # Docs: <https://git.io/JvxXE>
|
||||
needs: [golangci-lint, go-test, validate-config-file]
|
||||
steps:
|
||||
- uses: actions/setup-go@v2
|
||||
with: {go-version: 1.17}
|
||||
with: {go-version: 1.18}
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
|
@ -8,7 +8,7 @@ The format is based on [Keep a Changelog][keepachangelog] and this project adher
|
||||
|
||||
### Changed
|
||||
|
||||
- Go updated from `1.17.6` up to `1.17.7`
|
||||
- Go updated from `1.17.6` up to `1.18.0`
|
||||
|
||||
## v2.7.0
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
# syntax=docker/dockerfile:1.2
|
||||
|
||||
# Image page: <https://hub.docker.com/_/golang>
|
||||
FROM golang:1.17.7-alpine as builder
|
||||
FROM golang:1.18.0-alpine as builder
|
||||
|
||||
# can be passed with any prefix (like `v1.2.3@GITHASH`), e.g.: `docker build --build-arg "APP_VERSION=v1.2.3@GITHASH" .`
|
||||
ARG APP_VERSION="undefined@docker"
|
||||
|
@ -8,7 +8,7 @@ volumes:
|
||||
|
||||
services:
|
||||
app: &app-service
|
||||
image: golang:1.17.7-buster # Image page: <https://hub.docker.com/_/golang>
|
||||
image: golang:1.18.0-buster # Image page: <https://hub.docker.com/_/golang>
|
||||
working_dir: /src
|
||||
environment:
|
||||
HOME: /tmp
|
||||
|
Loading…
Reference in New Issue
Block a user