1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-09-15 18:57:01 +00:00

chore: upgrade docker v19.03.12 (#348)

Signed-off-by: Yoan Blanc <yoan@dosimple.ch>
This commit is contained in:
Yoan Blanc 2020-08-30 07:55:22 +02:00 committed by GitHub
parent 0fa58c16bd
commit 3e71b12c01
2 changed files with 17 additions and 1 deletions

View file

@ -23,6 +23,22 @@ jobs:
env: env:
CGO_ENABLED: 0 CGO_ENABLED: 0
snapshot:
if: ${{ github.event_name == 'pull_request' }}
needs:
- lint
- test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: GoReleaser
uses: goreleaser/goreleaser-action@v1
with:
version: latest
args: release --snapshot --rm-dist
env:
SNAPSHOT_VERSION: "v0.0.0"
release: release:
if: startsWith(github.ref, 'refs/tags/v') if: startsWith(github.ref, 'refs/tags/v')
needs: needs:

View file

@ -10,7 +10,7 @@ import (
"github.com/nektos/act/pkg/model" "github.com/nektos/act/pkg/model"
log "github.com/sirupsen/logrus" log "github.com/sirupsen/logrus"
"gotest.tools/assert" "gotest.tools/v3/assert"
) )
func TestGraphEvent(t *testing.T) { func TestGraphEvent(t *testing.T) {