Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/run-standard-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Cache binaries (windows)
id: cache-binaries-windows
if: runner.os == 'Windows'
uses: actions/cache@v5
uses: actions/cache@v6
with:
# We add binaries path one by one to avoid *.pdb and other msvc stuffs that generate a cache of 200Mo for windows
path: |
Expand All @@ -78,7 +78,7 @@ jobs:
- name: Cache binaries (macOS, Linux)
id: cache-binaries-unix
if: runner.os != 'Windows'
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
${{ github.workspace }}/build/${{ env.PRESET_NAME }}/bin/*
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
- name: Restore cached binaries (windows)
if: runner.os == 'Windows'
id: restore-binaries-windows
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: |
${{ github.workspace }}/build/${{ env.PRESET_NAME }}/bin/MODL.exe
Expand All @@ -122,7 +122,7 @@ jobs:
- name: Restore cached binaries (macOS, Linux)
if: runner.os != 'Windows'
id: restore-binaries
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: |
${{ github.workspace }}/build/${{ env.PRESET_NAME }}/bin/*
Expand Down
Loading