From 386f8d533887f179b03cf15a7aa02a0c73454127 Mon Sep 17 00:00:00 2001 From: John Boyes Date: Sun, 6 Dec 2020 12:08:02 +0700 Subject: [PATCH] Fix releases process (#68) The previous commit did not fix the releases process, as there were still some GitHub Actions dependencies which needed to be updated. Updated the dependencies in this commit. --- .github/workflows/github_tag_and_release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github_tag_and_release.yml b/.github/workflows/github_tag_and_release.yml index 54116e3..af36fda 100644 --- a/.github/workflows/github_tag_and_release.yml +++ b/.github/workflows/github_tag_and_release.yml @@ -27,12 +27,12 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.2 + uses: actions/checkout@v2.3.4 with: fetch-depth: 0 - name: Set up Go - uses: actions/setup-go@v2.1.2 + uses: actions/setup-go@v2.1.3 with: go-version: 1.15 -