chore(deps): bump urllib3 from 2.0.5 to 2.0.6 #825
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches-ignore: | |
- "dependabot/**" | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build-cache: | |
name: Build cache | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
- name: Install Python | |
uses: actions/setup-python@v4 | |
- name: Install Nox | |
run: python -m pip install nox | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3.0.0 | |
with: | |
platforms: 'arm,arm64,ppc64le,s390x,riscv64' | |
- name: Build cache | |
run: nox -s run -- --machine x86_64 i686 aarch64 ppc64le s390x armv7l riscv64 | |
- name: Create Pull Request | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && always() | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
commit-message: auto-update cache and/or README.rst | |
title: '[Bot] auto-update cache and/or README.rst' |