From 8a2a131059a4c3d5bcf9d5ba707bb54f9b6972e9 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Wed, 6 May 2020 23:12:22 +0200 Subject: [PATCH] Update workflows --- .github/workflows/ci.yaml | 4 ++-- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 2 +- README.md | 7 ++----- 4 files changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 26c8c9c..2a7440e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -32,9 +32,9 @@ jobs: run: git fetch --prune --unshallow - name: Set up Go - uses: actions/setup-go@v1 + uses: actions/setup-go@v2 with: - go-version: 1.13.x + go-version: 1.13 - name: Check uses: ./ diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 72da253..14e11fc 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,7 +13,7 @@ jobs: - # https://github.com/actions/checkout name: Checkout - uses: actions/checkout@v1 + uses: actions/checkout@v2 - # https://github.com/actions/setup-node name: Set up Node diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8a00b82..c053d02 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: - # https://github.com/actions/checkout name: Checkout - uses: actions/checkout@v1 + uses: actions/checkout@v2 - name: Build run: | diff --git a/README.md b/README.md index 0716146..58e2507 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@

GitHub release GitHub marketplace - Release workflow Test workflow Become a sponsor

@@ -15,8 +14,6 @@ ## Usage -Below is a simple snippet to use this action. A [live example](https://github.com/goreleaser/goreleaser-action/actions) is also available for this repository. - ```yaml name: goreleaser @@ -36,9 +33,9 @@ jobs: run: git fetch --prune --unshallow - name: Set up Go - uses: actions/setup-go@v1 + uses: actions/setup-go@v2 with: - go-version: 1.13.x + go-version: 1.13 - name: Run GoReleaser uses: goreleaser/goreleaser-action@v1