Update golang to 1.20

* Update golang to 1.20
This commit is contained in:
abraunegg 2023-04-18 07:32:27 +10:00
parent 21db21246f
commit f94ae5ffdb
2 changed files with 5 additions and 5 deletions

View file

@ -5,16 +5,16 @@ on:
branches: [ master ] branches: [ master ]
tags: [ 'v*' ] tags: [ 'v*' ]
pull_request: pull_request:
branches: #branches:
- master # - master
types: [closed] #types: [closed]
env: env:
DOCKER_HUB_SLUG: driveone/onedrive DOCKER_HUB_SLUG: driveone/onedrive
jobs: jobs:
build: build:
if: (!(github.event.action == 'closed' && github.event.pull_request.merged != true)) #if: (!(github.event.action == 'closed' && github.event.pull_request.merged != true))
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:

View file

@ -1,7 +1,7 @@
# -*-Dockerfile-*- # -*-Dockerfile-*-
ARG ALPINE_VERSION=3.17 ARG ALPINE_VERSION=3.17
ARG GO_VERSION=1.19 ARG GO_VERSION=1.20
ARG GOSU_VERSION=1.14 ARG GOSU_VERSION=1.14
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS builder-gosu FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS builder-gosu