diff options
author | Dylan Arbour <arbourd@users.noreply.github.com> | 2024-02-23 18:08:23 -0500 |
---|---|---|
committer | Dylan Arbour <arbourd@users.noreply.github.com> | 2024-02-24 11:12:31 -0500 |
commit | d5665f49a486e8aff27d8f7ee65cfbb187401f20 (patch) | |
tree | 27396eb0b1aef59c0466e7e6653bc1a404b8e277 /.github/workflows | |
parent | 9d02b906a5e54000d8ae8f22c0a2fac930cfeea3 (diff) | |
download | unit-d5665f49a486e8aff27d8f7ee65cfbb187401f20.tar.gz unit-d5665f49a486e8aff27d8f7ee65cfbb187401f20.tar.bz2 |
Update setup-go to v5
Removes deprecation notices on actions builds. v5 updates the version of
node and `cache: false` disables the errors related to not finding a
go.sum
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 65820c58..b5368ae9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -150,9 +150,10 @@ jobs: ## Go ## - - uses: actions/setup-go@v4 + - uses: actions/setup-go@v5 with: go-version: '${{ steps.metadata.outputs.version }}' + cache: false if: steps.metadata.outputs.module == 'go' - name: Configure go |