From 5757e6e86045e9e71d3c0a1a4ee1fe1f58655b4b Mon Sep 17 00:00:00 2001 From: Cedric Kring Date: Mon, 15 Apr 2019 13:03:23 +0200 Subject: [PATCH] Bump minor version --- Dockerfile | 2 +- README.md | 8 ++++---- go1.10/Dockerfile | 2 +- go1.11/Dockerfile | 2 +- go1.12/Dockerfile | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 36d8478a..8c48c753 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM golang:1.12 LABEL name="Golang Action" LABEL maintainer="Cedric Kring" -LABEL version="1.2.0" +LABEL version="1.3.0" LABEL repository="https://github.com/cedrickring/golang-action" LABEL com.github.actions.name="Golang Action" diff --git a/README.md b/README.md index 54de3bfe..ad635f9a 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ This Action allows you to run Go commands with your code. It will automatically ## How to use 1. Add an Action -2. Enter "cedrickring/golang-action@1.2.0" (`cedrickring/golang-action/go1.10@1.2.0` for Golang 1.10, 1.11, 1.12, defaults to the latest golang version) +2. Enter "cedrickring/golang-action@1.3.0" (`cedrickring/golang-action/go1.10@1.3.0` for Golang 1.10, 1.11, 1.12, defaults to the latest golang version) 3. If your repo builds with `make` or `go build && go test`, that's all you need. Otherwise, add a command in the args section like: ```bash go build -o my_executable main.go @@ -26,7 +26,7 @@ block like this: ```hcl action "ci" { - uses="cedrickring/golang-action@1.2.0" + uses="cedrickring/golang-action@1.3.0" # optional build command: args="./build.sh" @@ -41,7 +41,7 @@ action "ci" { If your project's go is not located at the root of the repo you can also specifiy environment variable `PROJECT_PATH`: ```hcl action "test_vendored" { - uses="cedrickring/golang-action@1.2.0" + uses="cedrickring/golang-action@1.3.0" # optional relative project path, default is root of repo e.g. "./": env={ PROJECT_PATH = "./tests/projects/go_modules_vendored" @@ -53,7 +53,7 @@ To use a specific golang version (1.10, 1.11, 1.12): ```hcl action "ci" { - uses="cedrickring/golang-action/go1.12@1.2.0" + uses="cedrickring/golang-action/go1.12@1.3.0" ... } ``` diff --git a/go1.10/Dockerfile b/go1.10/Dockerfile index d23fffc8..012f9431 100644 --- a/go1.10/Dockerfile +++ b/go1.10/Dockerfile @@ -2,7 +2,7 @@ FROM golang:1.10 LABEL name="Golang Action" LABEL maintainer="Cedric Kring" -LABEL version="1.2.0" +LABEL version="1.3.0" LABEL repository="https://github.com/cedrickring/golang-action" LABEL com.github.actions.name="Golang Action" diff --git a/go1.11/Dockerfile b/go1.11/Dockerfile index 984dc429..51e4614d 100644 --- a/go1.11/Dockerfile +++ b/go1.11/Dockerfile @@ -2,7 +2,7 @@ FROM golang:1.11 LABEL name="Golang Action" LABEL maintainer="Cedric Kring" -LABEL version="1.2.0" +LABEL version="1.3.0" LABEL repository="https://github.com/cedrickring/golang-action" LABEL com.github.actions.name="Golang Action" diff --git a/go1.12/Dockerfile b/go1.12/Dockerfile index 36d8478a..8c48c753 100644 --- a/go1.12/Dockerfile +++ b/go1.12/Dockerfile @@ -2,7 +2,7 @@ FROM golang:1.12 LABEL name="Golang Action" LABEL maintainer="Cedric Kring" -LABEL version="1.2.0" +LABEL version="1.3.0" LABEL repository="https://github.com/cedrickring/golang-action" LABEL com.github.actions.name="Golang Action"