build(deps): bump golang from 1.20-alpine to 1.21-alpine (#222)

* build(deps): bump golang from 1.20-alpine to 1.21-alpine

Bumps golang from 1.20-alpine to 1.21-alpine.

---
updated-dependencies:
- dependency-name: golang
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* wip: 🔕 temporary commit

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Paramtamtam <7326800+tarampampam@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2023-09-02 07:17:15 -07:00 committed by GitHub
parent 3ab1a23ac5
commit 61c1958717
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 3 deletions

View File

@ -8,6 +8,7 @@ The format is based on [Keep a Changelog][keepachangelog] and this project adher
### Added
- Go updated from `1.20` up to `1.21`
- Error pages now translated into 🇮🇩 [#218]
- Possibility catch all paths with error page 404 (using `--catch-all` flag for the `serve` or environment variable `CATCH_ALL=true`) [#217]

View File

@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1.2
# Image page: <https://hub.docker.com/_/golang>
FROM golang:1.20-alpine as builder
FROM golang:1.21-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"

View File

@ -9,7 +9,7 @@ volumes:
services:
app: &app-service
image: golang:1.20-buster # Image page: <https://hub.docker.com/_/golang>
image: golang:1.21-buster # Image page: <https://hub.docker.com/_/golang>
working_dir: /src
environment:
HOME: /tmp

2
go.mod
View File

@ -1,6 +1,6 @@
module gh.tarampamp.am/error-pages
go 1.20
go 1.21
require (
github.com/a8m/envsubst v1.4.2