Update golang to 1.20

* Update golang to 1.20
This commit is contained in:
abraunegg 2023-04-18 07:23:27 +10:00
parent fe19bb331b
commit 42cc6e6c3d
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

@ -2,7 +2,7 @@
ARG FEDORA_VERSION=37 ARG FEDORA_VERSION=37
ARG DEBIAN_VERSION=bullseye ARG DEBIAN_VERSION=bullseye
ARG GO_VERSION=1.17 ARG GO_VERSION=1.20
ARG GOSU_VERSION=1.14 ARG GOSU_VERSION=1.14
FROM golang:${GO_VERSION}-${DEBIAN_VERSION} AS builder-gosu FROM golang:${GO_VERSION}-${DEBIAN_VERSION} AS builder-gosu