Skip to content

Commit b4a6e6d

Browse files
authored
Merge pull request #2851 from pygame-community/dependabot/github_actions/actions/checkout-4.1.5
Bump actions/checkout from 4.1.4 to 4.1.5
2 parents 3822a18 + 4d85f34 commit b4a6e6d

11 files changed

+13
-13
lines changed

.github/workflows/build-debian-multiarch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- { arch: armv7, base_image: 'balenalib/raspberrypi3-debian:bookworm' }
6666

6767
steps:
68-
- uses: actions/checkout@v4.1.4
68+
- uses: actions/checkout@v4.1.5
6969

7070
- name: Build sources and run tests
7171
uses: uraimo/run-on-arch-action@v2.7.2

.github/workflows/build-emsdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
SDKROOT: /opt/python-wasm-sdk
4242

4343
steps:
44-
- uses: actions/checkout@v4.1.4
44+
- uses: actions/checkout@v4.1.5
4545

4646
- name: Regen with latest cython (using system python3)
4747
run: |

.github/workflows/build-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- { macarch: x86_64, os: macos-13 }
4848

4949
steps:
50-
- uses: actions/checkout@v4.1.4
50+
- uses: actions/checkout@v4.1.5
5151

5252
- name: Test for Mac Deps cache hit
5353
id: macdep-cache
@@ -165,7 +165,7 @@ jobs:
165165
CIBW_BUILD_VERBOSITY: 2
166166

167167
steps:
168-
- uses: actions/checkout@v4.1.4
168+
- uses: actions/checkout@v4.1.5
169169

170170
- name: pip cache
171171
uses: actions/cache@v4.0.2

.github/workflows/build-manylinux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
CIBW_BUILD_VERBOSITY: 2
8080

8181
steps:
82-
- uses: actions/checkout@v4.1.4
82+
- uses: actions/checkout@v4.1.5
8383

8484
- name: Log in to the Container registry
8585
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20

.github/workflows/build-on-msys2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
# - { sys: clangarm64, env: clang-aarch64 }
5050

5151
steps:
52-
- uses: actions/checkout@v4.1.4
52+
- uses: actions/checkout@v4.1.5
5353
- uses: msys2/setup-msys2@v2
5454
with:
5555
msystem: ${{ matrix.sys }}

.github/workflows/build-ubuntu-sdist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
os: [ubuntu-20.04, ubuntu-22.04]
5252

5353
steps:
54-
- uses: actions/checkout@v4.1.4
54+
- uses: actions/checkout@v4.1.5
5555

5656
- name: Install deps
5757
# install numpy from pip and not apt because the one from pip is newer,

.github/workflows/build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140
CIBW_BUILD_VERBOSITY: 2
141141

142142
steps:
143-
- uses: actions/checkout@v4.1.4
143+
- uses: actions/checkout@v4.1.5
144144

145145
- uses: TheMrMilchmann/setup-msvc-dev@v3 # this lets us use the developer command prompt on windows
146146
with:

.github/workflows/cppcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-20.04
2323

2424
steps:
25-
- uses: actions/checkout@v4.1.4
25+
- uses: actions/checkout@v4.1.5
2626

2727
- name: Install deps
2828
# https://github.com/actions/runner-images/issues/7192

.github/workflows/format-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
pre-commit:
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v4.1.4
33+
- uses: actions/checkout@v4.1.5
3434
- uses: actions/setup-python@v5
3535
with:
3636
python-version: 3.x
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ubuntu-22.04
4141

4242
steps:
43-
- uses: actions/checkout@v4.1.4
43+
- uses: actions/checkout@v4.1.5
4444

4545
- name: Install deps
4646
run: python3 -m pip install pylint sphinx"<7.2.0"

.github/workflows/release-gh-draft.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
needs: [manylinux-aarch64, manylinux, macos, windows, sdist]
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@v4.1.4
36+
- uses: actions/checkout@v4.1.5
3737

3838
- name: Download all artifacts
3939
uses: actions/download-artifact@v4

.github/workflows/release-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
# IMPORTANT: this permission is mandatory for trusted publishing
1313
id-token: write
1414
steps:
15-
- uses: actions/checkout@v4.1.4
15+
- uses: actions/checkout@v4.1.5
1616

1717
- name: Pull all release assets
1818
uses: robinraju/release-downloader@v1.10

0 commit comments

Comments
 (0)