mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-02-02 11:49:29 -05:00
feat: Update used goversion to 1.18. (#449)
This commit is contained in:
parent
02a6655da0
commit
7f114046e2
10 changed files with 10 additions and 10 deletions
2
.github/workflows/acc-test.yaml
vendored
2
.github/workflows/acc-test.yaml
vendored
|
|
@ -14,7 +14,7 @@ on:
|
|||
env:
|
||||
GOPROXY: https://proxy.golang.org,direct
|
||||
DEBIAN_FRONTEND: noninteractive
|
||||
GO_VERSION: "1.17"
|
||||
GO_VERSION: "1.18"
|
||||
TESTSUITE_TIMEOUT: "720s"
|
||||
|
||||
jobs:
|
||||
|
|
|
|||
2
.github/workflows/compile.yaml
vendored
2
.github/workflows/compile.yaml
vendored
|
|
@ -17,7 +17,7 @@ on:
|
|||
|
||||
env:
|
||||
GOPROXY: https://proxy.golang.org,direct
|
||||
GO_VERSION: "1.17"
|
||||
GO_VERSION: "1.18"
|
||||
|
||||
jobs:
|
||||
compile:
|
||||
|
|
|
|||
2
.github/workflows/release.yaml
vendored
2
.github/workflows/release.yaml
vendored
|
|
@ -16,7 +16,7 @@ on:
|
|||
- "v*"
|
||||
|
||||
env:
|
||||
GO_VERSION: "1.17"
|
||||
GO_VERSION: "1.18"
|
||||
|
||||
jobs:
|
||||
goreleaser:
|
||||
|
|
|
|||
2
.github/workflows/unit-test.yaml
vendored
2
.github/workflows/unit-test.yaml
vendored
|
|
@ -13,7 +13,7 @@ on:
|
|||
|
||||
env:
|
||||
GOPROXY: https://proxy.golang.org,direct
|
||||
GO_VERSION: "1.17"
|
||||
GO_VERSION: "1.18"
|
||||
|
||||
jobs:
|
||||
unit-test:
|
||||
|
|
|
|||
2
.github/workflows/website-lint.yaml
vendored
2
.github/workflows/website-lint.yaml
vendored
|
|
@ -12,7 +12,7 @@ on:
|
|||
|
||||
env:
|
||||
GOPROXY: https://proxy.golang.org,direct
|
||||
GO_VERSION: "1.17"
|
||||
GO_VERSION: "1.18"
|
||||
|
||||
jobs:
|
||||
website-generation:
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
1.17
|
||||
1.18
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ Please use issue templates as much as possible.
|
|||
Prerequisites:
|
||||
|
||||
- `make`, `git`, `bash`
|
||||
- [Go 1.16+](https://golang.org/doc/install)
|
||||
- [Go 1.18+](https://golang.org/doc/install)
|
||||
- [Docker](https://www.docker.com/)
|
||||
- [Terraform 0.12+](https://terraform.io/)
|
||||
- [git-chglog](https://github.com/git-chglog/git-chglog)
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
## Requirements
|
||||
- [Terraform](https://www.terraform.io/downloads.html) >=0.12.x
|
||||
- [Go](https://golang.org/doc/install) 1.17.x (to build the provider plugin)
|
||||
- [Go](https://golang.org/doc/install) 1.18.x (to build the provider plugin)
|
||||
|
||||
## Building The Provider
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ FROM ubuntu:20.04
|
|||
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
ARG DOCKER_CE_VERSION="5:20.10.10~3-0~ubuntu-focal"
|
||||
ARG GOLANG_VERSION="1.17"
|
||||
ARG GOLANG_VERSION="1.18"
|
||||
ARG TERRAFORM_VERSION="0.15.2"
|
||||
|
||||
# Install the baseline
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM golang:1.17-alpine as builder
|
||||
FROM golang:1.18-alpine as builder
|
||||
ARG MAIN_FILE_PATH
|
||||
|
||||
RUN echo "appuser:x:65534:65534:Appuser:/:" > /etc/passwd
|
||||
|
|
|
|||
Loading…
Reference in a new issue