Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

- name: Test for Mac Deps cache hit
id: macdep-cache
uses: actions/cache@v4.2.3
uses: actions/cache@v4.2.4
with:
path: ${{ github.workspace }}/pygame_mac_deps_${{ matrix.macarch }}
# The hash of all files in buildconfig manylinux-build and macdependencies is
Expand Down Expand Up @@ -99,14 +99,14 @@ jobs:
- uses: actions/checkout@v4.2.2

- name: pip cache
uses: actions/cache@v4.2.3
uses: actions/cache@v4.2.4
with:
path: ~/Library/Caches/pip # This cache path is only right on mac
key: pip-cache-${{ matrix.macarch }}-${{ matrix.os }}

- name: Fetch Mac deps
id: macdep-cache
uses: actions/cache@v4.2.3
uses: actions/cache@v4.2.4
with:
path: ${{ github.workspace }}/pygame_mac_deps_${{ matrix.macarch }}
key: macdep-${{ hashFiles('buildconfig/manylinux-build/**') }}-${{ hashFiles('buildconfig/macdependencies/*.sh') }}-${{ matrix.macarch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-ubuntu-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:

- name: Cache debug python build
id: cache-python
uses: actions/cache@v4.2.3
uses: actions/cache@v4.2.4
with:
key: ${{ matrix.python }}
path: ~/.pyenv/versions/${{ matrix.python }}-debug/**
Expand Down
Loading