Skip to content
This repository has been archived by the owner on Nov 2, 2021. It is now read-only.

Commit

Permalink
Make entrypoint.sh executable in go1.14 (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
wormi4ok authored Mar 30, 2020
1 parent 5e9c58f commit cbcc2ff
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM golang:1.14

LABEL name="Golang Action"
LABEL maintainer="Cedric Kring"
LABEL version="1.5.0"
LABEL version="1.5.2"
LABEL repository="https://github.com/cedrickring/golang-action"

LABEL com.github.actions.name="Golang Action"
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@master

- name: run
uses: cedrickring/[email protected].1
uses: cedrickring/[email protected].2
```
Expand All @@ -27,7 +27,7 @@ To run a custom command, just use:
```yaml
steps:
- name: Run custom command
uses: cedrickring/[email protected].1
uses: cedrickring/[email protected].2
with:
args: make my-target
```
Expand All @@ -39,7 +39,7 @@ source Go project:
```yaml
steps:
- name: Run with custom import path
uses: cedrickring/[email protected].1
uses: cedrickring/[email protected].2
env:
IMPORT: "root/repo"
```
Expand All @@ -49,7 +49,7 @@ To use Go Modules add `GO111MODULE=on` to the step:
```yaml
steps:
- name: Go Modules
uses: cedrickring/[email protected].1
uses: cedrickring/[email protected].2
env:
GO111MODULE: "on"
```
Expand All @@ -59,14 +59,14 @@ 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/[email protected].1
uses: cedrickring/[email protected].2
env:
PROJECT_PATH: "./path/in/my/project"
```

To use a specific golang version (1.10, 1.11, 1.12, 1.13), defaults to the latest version:
To use a specific golang version (1.10, 1.11, 1.12, 1.13, 1.14), defaults to the latest version:
```yaml
steps:
- name: Use Go 1.11
uses: cedrickring/golang-action/[email protected].1
uses: cedrickring/golang-action/[email protected].2
```
2 changes: 1 addition & 1 deletion go1.10/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM golang:1.10

LABEL name="Golang Action"
LABEL maintainer="Cedric Kring"
LABEL version="1.5.0"
LABEL version="1.5.2"
LABEL repository="https://github.com/cedrickring/golang-action"

LABEL com.github.actions.name="Golang Action"
Expand Down
2 changes: 1 addition & 1 deletion go1.11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM golang:1.11

LABEL name="Golang Action"
LABEL maintainer="Cedric Kring"
LABEL version="1.5.0"
LABEL version="1.5.2"
LABEL repository="https://github.com/cedrickring/golang-action"

LABEL com.github.actions.name="Golang Action"
Expand Down
2 changes: 1 addition & 1 deletion go1.12/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM golang:1.12

LABEL name="Golang Action"
LABEL maintainer="Cedric Kring"
LABEL version="1.5.0"
LABEL version="1.5.2"
LABEL repository="https://github.com/cedrickring/golang-action"

LABEL com.github.actions.name="Golang Action"
Expand Down
2 changes: 1 addition & 1 deletion go1.13/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM golang:1.13

LABEL name="Golang Action"
LABEL maintainer="Cedric Kring"
LABEL version="1.5.0"
LABEL version="1.5.2"
LABEL repository="https://github.com/cedrickring/golang-action"

LABEL com.github.actions.name="Golang Action"
Expand Down
2 changes: 1 addition & 1 deletion go1.14/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM golang:1.14

LABEL name="Golang Action"
LABEL maintainer="Cedric Kring"
LABEL version="1.5.0"
LABEL version="1.5.2"
LABEL repository="https://github.com/cedrickring/golang-action"

LABEL com.github.actions.name="Golang Action"
Expand Down
Empty file modified go1.14/entrypoint.sh
100644 → 100755
Empty file.

0 comments on commit cbcc2ff

Please sign in to comment.