MINGW-packages/mingw-w64-python/0121-CI-update-actions.patch
2025-06-07 14:11:54 +02:00

95 lines
2.7 KiB
Diff

From 3fbe82e92e9c31702b50c09cadbc29c185014ec3 Mon Sep 17 00:00:00 2001
From: Christoph Reiter <reiter.christoph@gmail.com>
Date: Thu, 6 Feb 2025 11:12:20 +0100
Subject: [PATCH 121/N] CI: update actions
---
.github/workflows/mingw.yml | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml
index 827dfe5..65d7d7d 100644
--- a/.github/workflows/mingw.yml
+++ b/.github/workflows/mingw.yml
@@ -22,7 +22,7 @@ jobs:
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
with:
msystem: ${{ matrix.msystem }}
@@ -150,7 +150,7 @@ jobs:
tar -zcf python.tar.gz python_pkgdir/
- name: Upload
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
if: always()
with:
name: build-${{ matrix.msystem }}
@@ -161,7 +161,7 @@ jobs:
container:
image: ubuntu:24.10
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Install deps
run: |
apt-get update
@@ -175,7 +175,7 @@ jobs:
make \
pkg-config
- - uses: actions/setup-python@v4
+ - uses: actions/setup-python@v5
with:
python-version: '3.12'
@@ -207,7 +207,7 @@ jobs:
zip -r install.zip _build/install
- name: Upload
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: build-cross-gcc-x86_64
path: install.zip
@@ -216,7 +216,7 @@ jobs:
needs: [cross-gcc-x86_64]
runs-on: windows-latest
steps:
- - uses: actions/download-artifact@v3
+ - uses: actions/download-artifact@v4
with:
name: build-cross-gcc-x86_64
@@ -235,7 +235,7 @@ jobs:
matrix:
arch: ['x86_64', 'i686', 'aarch64', 'armv7']
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Install deps
run: |
@@ -272,7 +272,7 @@ jobs:
zip -r install.zip _build/install
- name: Upload
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: build-cross-llvm-mingw-${{ matrix.arch }}
path: install.zip
@@ -285,7 +285,7 @@ jobs:
matrix:
arch: ['x86_64', 'i686']
steps:
- - uses: actions/download-artifact@v3
+ - uses: actions/download-artifact@v4
with:
name: build-cross-llvm-mingw-${{ matrix.arch }}