Skip to content

Commit

Permalink
Merge pull request #369 from PyO3/dependabot/github_actions/actions/c…
Browse files Browse the repository at this point in the history
…heckout-4

build(deps): bump actions/checkout from 3 to 4
  • Loading branch information
davidhewitt committed Oct 24, 2023
2 parents 5e15bb6 + 4511300 commit bf84143
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
fmt:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand All @@ -27,7 +27,7 @@ jobs:
mypy:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand All @@ -41,7 +41,7 @@ jobs:
pytest:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
platform: { os: "windows-latest", python-architecture: "x86", rust-target: "i686-pc-windows-msvc" }

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -202,15 +202,15 @@ jobs:
{ arch: "armv7" },
]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
- run: pip install nox
- run: nox -s test-crossenv -- ${{ matrix.platform.arch }}

test-cross:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:
test-zigbuild:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -304,7 +304,7 @@ jobs:
test-cibuildwheel:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: aarch64-apple-darwin
Expand Down Expand Up @@ -332,7 +332,7 @@ jobs:
{ msystem: MINGW32, arch: i686, path: mingw32, rust_target: i686-pc-windows-gnu }
]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install MSys2 and dependencies
uses: msys2/setup-msys2@v2
with:
Expand Down Expand Up @@ -366,7 +366,7 @@ jobs:
name: Test Emscripten
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# Fetch all history so that setuptools_scm works correctly
fetch-depth: 0
Expand Down

0 comments on commit bf84143

Please sign in to comment.