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

Commit

Permalink
Go 1.15 release (1.6.0) (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
cedrickring authored Aug 22, 2020
1 parent b8d5fef commit 382e630
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.15

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

LABEL com.github.actions.name="Golang Action"
Expand Down
12 changes: 6 additions & 6 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/golang-action@1.5.2
uses: cedrickring/golang-action@1.6.0
```
Expand All @@ -27,7 +27,7 @@ To run a custom command, just use:
```yaml
steps:
- name: Run custom command
uses: cedrickring/golang-action@1.5.2
uses: cedrickring/golang-action@1.6.0
with:
args: make my-target
```
Expand All @@ -39,7 +39,7 @@ source Go project:
```yaml
steps:
- name: Run with custom import path
uses: cedrickring/golang-action@1.5.2
uses: cedrickring/golang-action@1.6.0
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/golang-action@1.5.2
uses: cedrickring/golang-action@1.6.0
env:
GO111MODULE: "on"
```
Expand All @@ -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.5.2
uses: cedrickring/golang-action@1.6.0
env:
PROJECT_PATH: "./path/in/my/project"
```
Expand All @@ -68,5 +68,5 @@ To use a specific golang version (1.10, 1.11, 1.12, 1.13, 1.14, 1.15), defaults
```yaml
steps:
- name: Use Go 1.11
uses: cedrickring/golang-action/go1.11@1.5.2
uses: cedrickring/golang-action/go1.11@1.6.0
```
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.2"
LABEL version="1.6.0"
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.2"
LABEL version="1.6.0"
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.2"
LABEL version="1.6.0"
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.2"
LABEL version="1.6.0"
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.2"
LABEL version="1.6.0"
LABEL repository="https://github.com/cedrickring/golang-action"

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

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

LABEL com.github.actions.name="Golang Action"
Expand Down

0 comments on commit 382e630

Please sign in to comment.