From 900bdc241bf85a19d65d5e6540cf0a09eb274b4f Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Tue, 24 Dec 2019 11:37:15 +0100 Subject: [PATCH] Fix actions version (#56) --- .github/workflows/ci.yaml | 4 +++- README.md | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fa4683f..4dbb496 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -29,7 +29,9 @@ jobs: uses: actions/checkout@v1 - name: Set up Go - uses: actions/setup-go@master + uses: actions/setup-go@v1 + with: + go-version: 1.13.x - name: GoReleaser uses: ./ diff --git a/README.md b/README.md index 478192e..e0c3d4b 100644 --- a/README.md +++ b/README.md @@ -30,10 +30,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@master + uses: actions/checkout@v1 - name: Set up Go - uses: actions/setup-go@master + uses: actions/setup-go@v1 with: go-version: 1.13.x -