From 0cda6a17b80cad26faff6ca36c4e973b367fd0a2 Mon Sep 17 00:00:00 2001 From: dofuuz <8174871+dofuuz@users.noreply.github.com> Date: Sat, 18 May 2024 15:14:44 +0900 Subject: [PATCH] Bump versions for Github Actions --- .github/workflows/build-dist.yml | 16 ++++++++-------- .github/workflows/run-test.yml | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build-dist.yml b/.github/workflows/build-dist.yml index b015301..bbda4f4 100644 --- a/.github/workflows/build-dist.yml +++ b/.github/workflows/build-dist.yml @@ -16,16 +16,16 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, windows-2019, macos-11] + os: [ubuntu-22.04, windows-2022, macos-13] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 submodules: true - name: Build wheels - uses: pypa/cibuildwheel@v2.16.2 + uses: pypa/cibuildwheel@v2.16.5 env: # Skip builds(save time / avoid build error) CIBW_SKIP: "cp36-* pp* *-musllinux_* *_i686 *-win32" @@ -43,10 +43,10 @@ jobs: build_archs: name: Build wheels manylinux_aarch64 - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 submodules: true @@ -57,7 +57,7 @@ jobs: platforms: all - name: Build wheels - uses: pypa/cibuildwheel@v2.16.2 + uses: pypa/cibuildwheel@v2.16.5 env: CIBW_ARCHS_LINUX: aarch64 CIBW_BUILD: cp*-manylinux_aarch64 @@ -75,9 +75,9 @@ jobs: build_sdist: name: Build source distribution - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 submodules: true diff --git a/.github/workflows/run-test.yml b/.github/workflows/run-test.yml index d89996c..aa53178 100644 --- a/.github/workflows/run-test.yml +++ b/.github/workflows/run-test.yml @@ -14,12 +14,12 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }}