diff options
author | Gordon MacPherson <gordon@gordonite.tech> | 2021-02-13 16:04:57 +0000 |
---|---|---|
committer | Gordon MacPherson <gordon@gordonite.tech> | 2021-02-13 16:04:57 +0000 |
commit | f2feefb367665f6e60de7c7ad820bd18597f4688 (patch) | |
tree | 128bb31ec6d8e1ca39e080818b525588c96315b3 | |
parent | 041cccc28773fe2d832a90888416df106f2a6d79 (diff) |
Use github actions cache not my own one.
-rw-r--r-- | .github/workflows/windows_builds.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/windows_builds.yml b/.github/workflows/windows_builds.yml index b9bf510c71..19ff555b56 100644 --- a/.github/workflows/windows_builds.yml +++ b/.github/workflows/windows_builds.yml @@ -24,7 +24,7 @@ jobs: # Editing this is pretty dangerous for Windows since it can break and needs to be properly tested with a fresh cache. - name: Load .scons_cache directory id: windows-editor-cache - uses: RevoluPowered/cache@v2.1 + uses: actions/cache@v2 with: path: /.scons_cache/ key: ${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}} |