diff --git a/Dockerfile b/Dockerfile index 9a698df7..bbadeb84 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM golang:1.13 LABEL name="Golang Action" LABEL maintainer="Cedric Kring" -LABEL version="1.4.0" +LABEL version="1.4.1" LABEL repository="https://github.com/cedrickring/golang-action" LABEL com.github.actions.name="Golang Action" diff --git a/README.md b/README.md index 505b1b85..0c4d187e 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ jobs: - uses: actions/checkout@master - name: run - uses: cedrickring/golang-action@1.4.0 + uses: cedrickring/golang-action@1.4.1 ``` @@ -27,7 +27,7 @@ To run a custom command, just use: ```yaml steps: - name: Run custom command - uses: cedrickring/golang-action@1.4.0 + uses: cedrickring/golang-action@1.4.1 with: args: make my-target ``` @@ -39,7 +39,7 @@ source Go project: ```yaml steps: - name: Run with custom import path - uses: cedrickring/golang-action@1.4.0 + uses: cedrickring/golang-action@1.4.1 env: IMPORT: "root/repo" ``` @@ -49,7 +49,7 @@ To use Go Modules add `GO111MODULE=on` to the step: ```yaml steps: - name: Go Modules - uses: cedrickring/golang-action@1.4.0 + uses: cedrickring/golang-action@1.4.1 env: GO111MODULE: "on" ``` @@ -59,7 +59,7 @@ If your go project is not located at the root of the repo you can also specify e ```yaml steps: - name: Custom project path - uses: cedrickring/golang-action@1.4.0 + uses: cedrickring/golang-action@1.4.1 env: PROJECT_PATH: "./path/in/my/project" ``` @@ -68,5 +68,5 @@ To use a specific golang version (1.10, 1.11, 1.12, 1.13), defaults to the lates ```yaml steps: - name: Use Go 1.11 - uses: cedrickring/golang-action/go1.11@1.4.0 + uses: cedrickring/golang-action/go1.11@1.4.1 ``` diff --git a/go1.10/Dockerfile b/go1.10/Dockerfile index 5c913f68..099299f1 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.4.0" +LABEL version="1.4.1" 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 4f3d636c..a1a7f3ab 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.4.0" +LABEL version="1.4.1" 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 7874f476..576edb93 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.4.0" +LABEL version="1.4.1" LABEL repository="https://github.com/cedrickring/golang-action" LABEL com.github.actions.name="Golang Action" diff --git a/go1.13/Dockerfile b/go1.13/Dockerfile index 9a698df7..bbadeb84 100644 --- a/go1.13/Dockerfile +++ b/go1.13/Dockerfile @@ -2,7 +2,7 @@ FROM golang:1.13 LABEL name="Golang Action" LABEL maintainer="Cedric Kring" -LABEL version="1.4.0" +LABEL version="1.4.1" LABEL repository="https://github.com/cedrickring/golang-action" LABEL com.github.actions.name="Golang Action" diff --git a/go1.13/entrypoint.sh b/go1.13/entrypoint.sh old mode 100644 new mode 100755