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 @@
@@ -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