Skip to content

Commit

Permalink
Merge pull request #4775 from joncampbell123/dependabot/github_action…
Browse files Browse the repository at this point in the history
…s/actions/cache-4

Bump actions/cache from 3 to 4
  • Loading branch information
joncampbell123 authored Jan 22, 2024
2 parents 3f487f8 + 24b17d6 commit 0c88e5f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/vsbuild_xp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
with:
files: dosbox-x-vsbuild-XP-${{ env.timestamp }}.zip
- name: Cache Visual Studio builds
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: ${{ github.workspace }}/vs-bin
key: vs-bin-${{ github.sha }}
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
strip -s src/dosbox-x.exe
cp src/dosbox-x.exe mingw-bin/dosbox-x_mingw_lowend_SDL1.exe
- name: Cache MinGW32 lowend builds
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: ${{ github.workspace }}/mingw-bin
key: mingw-bin-${{ github.sha }}
Expand All @@ -193,12 +193,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Restore Visual Studio builds
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ${{ github.workspace }}/vs-bin
key: vs-bin-${{ github.sha }}
- name: Restore MinGW builds
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ${{ github.workspace }}/mingw-bin
key: mingw-bin-${{ github.sha }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/windows-installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
name: dosbox-x-vsbuild-ARM32_64-${{ env.timestamp }}
path: ${{ github.workspace }}/package/
- name: Cache Visual Studio builds
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: ${{ github.workspace }}/vs-bin
key: vs-${{ github.sha }}
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
cp $top/src/dosbox-x.exe $top/package/dosbox-x_MinGWx86_SDL2.exe
cp $top/src/dosbox-x.exe $top/mingw-x86-bin/dosbox-x_MinGWx86_SDL2.exe
- name: Cache MinGW x86 builds
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: ${{ github.workspace }}/mingw-x86-bin
key: mingw-x86-bin-${{ github.sha }}
Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:
cp $top/src/dosbox-x.exe $top/package/dosbox-x_MinGWx64_SDL2.exe
cp $top/src/dosbox-x.exe $top/mingw-x64-bin/dosbox-x_MinGWx64_SDL2.exe
- name: Cache MinGW x64 builds
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: ${{ github.workspace }}/mingw-x64-bin
key: mingw-x64-bin-${{ github.sha }}
Expand All @@ -274,17 +274,17 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Restore MinGW x86 builds
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ${{ github.workspace }}/mingw-x86-bin
key: mingw-x86-bin-${{ github.sha }}
- name: Restore MinGW x64 builds
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ${{ github.workspace }}/mingw-x64-bin
key: mingw-x64-bin-${{ github.sha }}
- name: Restore Visual Studio builds
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ${{ github.workspace }}/vs-bin
key: vs-${{ github.sha }}
Expand Down

0 comments on commit 0c88e5f

Please sign in to comment.