mirror of https://github.com/docker/compose.git
Merge pull request #9708 from milas/golang-1.18.5
build: bump to Go 1.18.5
This commit is contained in:
commit
d0d06d414d
|
@ -12,7 +12,7 @@ on:
|
||||||
required: false
|
required: false
|
||||||
default: "false"
|
default: "false"
|
||||||
env:
|
env:
|
||||||
GO_VERSION: 1.18.4
|
GO_VERSION: 1.18.5
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
name: Lint
|
name: Lint
|
||||||
|
|
|
@ -7,7 +7,7 @@ on:
|
||||||
description: "Release Tag"
|
description: "Release Tag"
|
||||||
required: true
|
required: true
|
||||||
env:
|
env:
|
||||||
GO_VERSION: 1.18.4
|
GO_VERSION: 1.18.5
|
||||||
jobs:
|
jobs:
|
||||||
upload-release:
|
upload-release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -23,7 +23,7 @@ jobs:
|
||||||
|
|
||||||
- name: Setup docker CLI
|
- name: Setup docker CLI
|
||||||
run: |
|
run: |
|
||||||
curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.3.tgz | tar xz
|
curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.17.tgz | tar xz
|
||||||
sudo cp ./docker/docker /usr/bin/ && rm -rf docker && docker version
|
sudo cp ./docker/docker /usr/bin/ && rm -rf docker && docker version
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
|
|
|
@ -15,8 +15,8 @@
|
||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
ARG GO_VERSION=1.18.4-alpine
|
ARG GO_VERSION=1.18.5-alpine
|
||||||
ARG GOLANGCI_LINT_VERSION=v1.46.2-alpine
|
ARG GOLANGCI_LINT_VERSION=v1.47.3-alpine
|
||||||
ARG PROTOC_GEN_GO_VERSION=v1.4.3
|
ARG PROTOC_GEN_GO_VERSION=v1.4.3
|
||||||
|
|
||||||
FROM --platform=${BUILDPLATFORM} golangci/golangci-lint:${GOLANGCI_LINT_VERSION} AS local-golangci-lint
|
FROM --platform=${BUILDPLATFORM} golangci/golangci-lint:${GOLANGCI_LINT_VERSION} AS local-golangci-lint
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
ARG GO_VERSION=1.18.4
|
ARG GO_VERSION=1.18.5
|
||||||
ARG FORMATS=md,yaml
|
ARG FORMATS=md,yaml
|
||||||
|
|
||||||
FROM --platform=${BUILDPLATFORM} golang:${GO_VERSION}-alpine AS docsgen
|
FROM --platform=${BUILDPLATFORM} golang:${GO_VERSION}-alpine AS docsgen
|
||||||
|
|
Loading…
Reference in New Issue