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
2 changes: 1 addition & 1 deletion .github/workflows/build-debian-multiarch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- { arch: armv7, base_image: 'balenalib/raspberrypi3-debian:bookworm' }

steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v6.0.0

- name: Build sources and run tests
uses: uraimo/run-on-arch-action@v3.0.1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-emsdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
PYBUILD: 3.13

steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v6.0.0

- name: Install python-wasm-sdk
run: |
Expand All @@ -64,7 +64,7 @@ jobs:
name: Pyodide build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v6.0.0

- uses: pypa/cibuildwheel@v3.2.1
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- { macarch: x86_64, os: macos-15 }

steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v6.0.0

- name: Test for Mac Deps cache hit
id: macdep-cache
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
CIBW_BEFORE_TEST: rm -rf ${{ github.workspace }}/pygame_mac_deps

steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v6.0.0

- name: pip cache
uses: actions/cache@v4.3.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-manylinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
CIBW_ARCHS: ${{ matrix.arch }}

steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v6.0.0

- name: Log in to the Container registry
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-on-msys2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
# - { sys: clangarm64, env: clang-aarch64 }

steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v6.0.0
- uses: msys2/setup-msys2@v2
with:
msystem: ${{ matrix.sys }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-sdl3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
PG_DEPS_FROM_SYSTEM: 1

steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v6.0.0
- uses: actions/setup-python@v6
with:
python-version: '3.14'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-ubuntu-sdist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
PG_DEPS_FROM_SYSTEM: 1

steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v6.0.0

- name: Install deps
# install numpy from pip and not apt because the one from pip is newer,
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
CIBW_ARCHS: ${{ matrix.winarch }}

steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v6.0.0

- uses: TheMrMilchmann/setup-msvc-dev@v4 # this lets us use the developer command prompt on windows
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
SDL_AUDIODRIVER: "disk"

steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v6.0.0

- name: Install deps
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-gh-draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
contents: write

steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v6.0.0

- name: Download all artifacts
uses: actions/download-artifact@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v6.0.0

- name: Pull all release assets
uses: robinraju/release-downloader@v1.12
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-ubuntu-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
PG_DEPS_FROM_SYSTEM: 1

steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v6.0.0

- name: Install pygame-ce deps
# https://github.com/actions/runner-images/issues/7192
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
needs: debug_coverage

steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v6.0.0
with:
fetch-depth: 0 # fetch full history

Expand Down
Loading