From 4591e42e65cf483147a7c7a4f4cfeac81b21c917 Mon Sep 17 00:00:00 2001 From: ICHINOSE Shogo Date: Fri, 9 Dec 2022 20:51:20 +0900 Subject: [PATCH] bump actions/checkout@v3 and actions/setup-go@v3 (#1375) * bump actions/checkout@v3 and actions/setup-go@v3 * enable cache of actions/setup-go * Revert "enable cache of actions/setup-go" I don't know why, but some jobs fail with "Could not get cache folder paths". This reverts commit 185228e0e3110b182759332193ebd75ed7054477. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 703203258..f5ba6b99c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -66,8 +66,8 @@ jobs: fail-fast: false matrix: ${{ fromJSON(needs.list.outputs.matrix) }} steps: - - uses: actions/checkout@v2 - - uses: actions/setup-go@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-go@v3 with: go-version: ${{ matrix.go }} - uses: shogo82148/actions-setup-mysql@v1