From c0f74f424448b6e525d107bca0a14e88915fdb93 Mon Sep 17 00:00:00 2001 From: Cedric Kring <39853520+cedrickring@users.noreply.github.com> Date: Mon, 7 Oct 2019 22:09:36 +0200 Subject: [PATCH] Make entrypoint.sh executable (#24) * Make entrypoint.sh executable * Bump version --- Dockerfile | 2 +- README.md | 12 ++++++------ go1.10/Dockerfile | 2 +- go1.11/Dockerfile | 2 +- go1.12/Dockerfile | 2 +- go1.13/Dockerfile | 2 +- go1.13/entrypoint.sh | 0 7 files changed, 11 insertions(+), 11 deletions(-) mode change 100644 => 100755 go1.13/entrypoint.sh 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