diff options
author | Adrian Cole <[email protected]> | 2022-09-08 19:54:28 +0800 |
---|---|---|
committer | Ron Evans <[email protected]> | 2022-09-08 16:27:40 +0200 |
commit | 96e3ecd9498592d06d6b627963ddfb6cc8d2aa23 (patch) | |
tree | eab55a23245e446816f3d132ce6d2860a51bea48 /.github/workflows/windows.yml | |
parent | 8bbfb1ee68245a967081165c7161cd3421f97823 (diff) | |
download | tinygo-96e3ecd9498592d06d6b627963ddfb6cc8d2aa23.tar.gz tinygo-96e3ecd9498592d06d6b627963ddfb6cc8d2aa23.zip |
build: updates to actions/cache@v3
v2 has bugs and hasn't had a release since last November.
See https://github.com/actions/cache/releases
Signed-off-by: Adrian Cole <[email protected]>
Diffstat (limited to '.github/workflows/windows.yml')
-rw-r--r-- | .github/workflows/windows.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 49aff5d68..2c5f15ecb 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -31,14 +31,14 @@ jobs: with: submodules: true - name: Cache Go - uses: actions/cache@v2 + uses: actions/cache@v3 with: key: go-cache-windows-v1-${{ hashFiles('go.mod') }} path: | ~/AppData/Local/go-build ~/go/pkg/mod - name: Cache LLVM source - uses: actions/cache@v2 + uses: actions/cache@v3 id: cache-llvm-source with: key: llvm-source-14-windows-v2 @@ -52,7 +52,7 @@ jobs: if: steps.cache-llvm-source.outputs.cache-hit != 'true' run: make llvm-source - name: Cache LLVM build - uses: actions/cache@v2 + uses: actions/cache@v3 id: cache-llvm-build with: key: llvm-build-14-windows-v2 @@ -69,7 +69,7 @@ jobs: # Remove unnecessary object files (to reduce cache size). find llvm-build -name CMakeFiles -prune -exec rm -r '{}' \; - name: Cache wasi-libc sysroot - uses: actions/cache@v2 + uses: actions/cache@v3 id: cache-wasi-libc with: key: wasi-libc-sysroot-v4 |