Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- {VERSION: "3.9", TOXENV: "py39"}
name: "Python ${{ matrix.PYTHON.VERSION }} on macOS"
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.0.2
- name: Setup python
uses: actions/setup-python@v2.3.2
with:
Expand All @@ -40,7 +40,7 @@ jobs:
- {VERSION: "3.9", TOXENV: "py39"}
name: "Python ${{ matrix.PYTHON.VERSION }} on ${{ matrix.WINDOWS.WINDOWS }}"
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.0.2
- name: Setup python
uses: actions/setup-python@v2.3.2
with:
Expand All @@ -65,7 +65,7 @@ jobs:
- {VERSION: "pypy3", TOXENV: "pypy3"}
name: "${{ matrix.PYTHON.TOXENV }} on linux"
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.0.2
- name: Setup python
uses: actions/setup-python@v2.3.2
with:
Expand All @@ -84,7 +84,7 @@ jobs:
- {IMAGE: "alpine", TOXENV: "py39"}
name: "${{ matrix.IMAGE.TOXENV }} on ${{ matrix.IMAGE.IMAGE }}"
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.0.2
with:
persist-credentials: false
- run: 'tox'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wheel-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: "${{ matrix.PYTHON.ABI_VERSION }} ${{ matrix.CONTAINER.NAME }}"
container: ghcr.io/pyca/${{ matrix.CONTAINER.IMAGE }}
steps:
- uses: actions/checkout@v1 # Need v1 because manylinux2010 can't run node from v2
- uses: actions/checkout@v3.0.2 # Need v1 because manylinux2010 can't run node from v2
with:
# The tag to build or the tag received by the tag event
ref: ${{ github.event.inputs.version || github.ref }}
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
BIN_PATH: '/Library/Frameworks/Python.framework/Versions/3.10/bin/python3'
name: "Python ${{ matrix.PYTHON.VERSION }} for ABI ${{ matrix.PYTHON.ABI_VERSION }} on macOS"
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.0.2
with:
# The tag to build or the tag received by the tag event
ref: ${{ github.event.inputs.version || github.ref }}
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
- {VERSION: "3.6", ABI_VERSION: "cp36"}
name: "${{ matrix.PYTHON.VERSION }} ${{ matrix.PYTHON.ABI_VERSION }} ${{ matrix.WINDOWS}}"
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.0.2
with:
# The tag to build or the tag received by the tag event
ref: ${{ github.event.inputs.version || github.ref }}
Expand Down