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

Commit 382e630

Browse files
authored
Go 1.15 release (1.6.0) (#31)
1 parent b8d5fef commit 382e630

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM golang:1.15
22

33
LABEL name="Golang Action"
44
LABEL maintainer="Cedric Kring"
5-
LABEL version="1.5.2"
5+
LABEL version="1.6.0"
66
LABEL repository="https://github.com/cedrickring/golang-action"
77

88
LABEL com.github.actions.name="Golang Action"

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@master
1919

2020
- name: run
21-
uses: cedrickring/golang-action@1.5.2
21+
uses: cedrickring/golang-action@1.6.0
2222
```
2323
2424
@@ -27,7 +27,7 @@ To run a custom command, just use:
2727
```yaml
2828
steps:
2929
- name: Run custom command
30-
uses: cedrickring/golang-action@1.5.2
30+
uses: cedrickring/golang-action@1.6.0
3131
with:
3232
args: make my-target
3333
```
@@ -39,7 +39,7 @@ source Go project:
3939
```yaml
4040
steps:
4141
- name: Run with custom import path
42-
uses: cedrickring/golang-action@1.5.2
42+
uses: cedrickring/golang-action@1.6.0
4343
env:
4444
IMPORT: "root/repo"
4545
```
@@ -49,7 +49,7 @@ To use Go Modules add `GO111MODULE=on` to the step:
4949
```yaml
5050
steps:
5151
- name: Go Modules
52-
uses: cedrickring/golang-action@1.5.2
52+
uses: cedrickring/golang-action@1.6.0
5353
env:
5454
GO111MODULE: "on"
5555
```
@@ -59,7 +59,7 @@ If your go project is not located at the root of the repo you can also specify e
5959
```yaml
6060
steps:
6161
- name: Custom project path
62-
uses: cedrickring/golang-action@1.5.2
62+
uses: cedrickring/golang-action@1.6.0
6363
env:
6464
PROJECT_PATH: "./path/in/my/project"
6565
```
@@ -68,5 +68,5 @@ To use a specific golang version (1.10, 1.11, 1.12, 1.13, 1.14, 1.15), defaults
6868
```yaml
6969
steps:
7070
- name: Use Go 1.11
71-
uses: cedrickring/golang-action/go1.11@1.5.2
71+
uses: cedrickring/golang-action/go1.11@1.6.0
7272
```

go1.10/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM golang:1.10
22

33
LABEL name="Golang Action"
44
LABEL maintainer="Cedric Kring"
5-
LABEL version="1.5.2"
5+
LABEL version="1.6.0"
66
LABEL repository="https://github.com/cedrickring/golang-action"
77

88
LABEL com.github.actions.name="Golang Action"

go1.11/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM golang:1.11
22

33
LABEL name="Golang Action"
44
LABEL maintainer="Cedric Kring"
5-
LABEL version="1.5.2"
5+
LABEL version="1.6.0"
66
LABEL repository="https://github.com/cedrickring/golang-action"
77

88
LABEL com.github.actions.name="Golang Action"

go1.12/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM golang:1.12
22

33
LABEL name="Golang Action"
44
LABEL maintainer="Cedric Kring"
5-
LABEL version="1.5.2"
5+
LABEL version="1.6.0"
66
LABEL repository="https://github.com/cedrickring/golang-action"
77

88
LABEL com.github.actions.name="Golang Action"

go1.13/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM golang:1.13
22

33
LABEL name="Golang Action"
44
LABEL maintainer="Cedric Kring"
5-
LABEL version="1.5.2"
5+
LABEL version="1.6.0"
66
LABEL repository="https://github.com/cedrickring/golang-action"
77

88
LABEL com.github.actions.name="Golang Action"

go1.14/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM golang:1.14
22

33
LABEL name="Golang Action"
44
LABEL maintainer="Cedric Kring"
5-
LABEL version="1.5.2"
5+
LABEL version="1.6.0"
66
LABEL repository="https://github.com/cedrickring/golang-action"
77

88
LABEL com.github.actions.name="Golang Action"

go1.15/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM golang:1.15
22

33
LABEL name="Golang Action"
44
LABEL maintainer="Cedric Kring"
5-
LABEL version="1.5.2"
5+
LABEL version="1.6.0"
66
LABEL repository="https://github.com/cedrickring/golang-action"
77

88
LABEL com.github.actions.name="Golang Action"

0 commit comments

Comments
 (0)