summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2023-01-18 19:47:15 +0900
committerGitHub <noreply@github.com>2023-01-18 19:47:15 +0900
commit10082295536098d90681da5d7199ca384e8b8ff8 (patch)
tree0e7494b6d79ce2b6986f25f7ddbb8b4f44315791 /.github/workflows
parentb82d0b62f187552b8108602d7b0451ac362a29cc (diff)
downloadmsgpack-python-10082295536098d90681da5d7199ca384e8b8ff8.tar.gz
Release v1.0.5rc1 (#528)v1.0.5rc1
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/black.yaml4
-rw-r--r--.github/workflows/test.yml6
-rw-r--r--.github/workflows/wheel.yml2
3 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/black.yaml b/.github/workflows/black.yaml
index 0a0a737..1e28b7b 100644
--- a/.github/workflows/black.yaml
+++ b/.github/workflows/black.yaml
@@ -11,13 +11,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup Python
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: '3.x'
architecture: 'x64'
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Black Code Formatter
run: |
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index d01d74c..5e41167 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -9,8 +9,8 @@ jobs:
test:
strategy:
matrix:
- os: [ubuntu-20.04, windows-2022, macos-10.15]
- py: ["3.11-dev", "3.10", "3.9", "3.8", "3.7", "3.6"]
+ os: [ubuntu-22.04, windows-2022, macos-10.15]
+ py: ["3.11", "3.10", "3.9", "3.8", "3.7"]
runs-on: ${{ matrix.os }}
name: Run test with Python ${{ matrix.py }} on ${{ matrix.os }}
@@ -20,7 +20,7 @@ jobs:
uses: actions/checkout@v3
- name: Set up Python
- uses: actions/setup-python@v3
+ uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}
cache: "pip"
diff --git a/.github/workflows/wheel.yml b/.github/workflows/wheel.yml
index 770b565..b2879fe 100644
--- a/.github/workflows/wheel.yml
+++ b/.github/workflows/wheel.yml
@@ -35,7 +35,7 @@ jobs:
make cython
- name: Build
- uses: pypa/cibuildwheel@v2.9.0
+ uses: pypa/cibuildwheel@v2.12.0
env:
CIBW_TEST_REQUIRES: "pytest"
CIBW_TEST_COMMAND: "pytest {package}/test"