1818 - uses : actions/checkout@master
1919
2020 - name : run
21- uses : cedrickring/golang-action@1.4.1
21+ uses : cedrickring/golang-action@1.5.0
2222` ` `
2323
2424
@@ -27,7 +27,7 @@ To run a custom command, just use:
2727` ` ` yaml
2828steps:
2929- name: Run custom command
30- uses: cedrickring/golang-action@1.4.1
30+ uses: cedrickring/golang-action@1.5.0
3131 with:
3232 args: make my-target
3333` ` `
@@ -39,7 +39,7 @@ source Go project:
3939` ` ` yaml
4040steps:
4141- name: Run with custom import path
42- uses: cedrickring/golang-action@1.4.1
42+ uses: cedrickring/golang-action@1.5.0
4343 env:
4444 IMPORT: "root/repo"
4545` ` `
@@ -49,7 +49,7 @@ To use Go Modules add `GO111MODULE=on` to the step:
4949` ` ` yaml
5050steps:
5151- name: Go Modules
52- uses: cedrickring/golang-action@1.4.1
52+ uses: cedrickring/golang-action@1.5.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
6060steps:
6161- name: Custom project path
62- uses: cedrickring/golang-action@1.4.1
62+ uses: cedrickring/golang-action@1.5.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), defaults to the lates
6868` ` ` yaml
6969steps:
7070- name: Use Go 1.11
71- uses: cedrickring/golang-action/go1.11@1.4.1
71+ uses: cedrickring/golang-action/go1.11@1.5.0
7272` ` `
0 commit comments