Skip to content
Open
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 @@ -36,7 +36,7 @@ jobs:
- {VERSION: "3.14-dev", NOXSESSION: "tests", NOTE: "minimal", SODIUM_INSTALL_MINIMAL: "1"}
name: "Linux ${{ matrix.PYTHON.VERSION }} ${{ matrix.PYTHON.NOXSESSION }} ${{ matrix.PYTHON.NOTE }}"
steps:
- uses: actions/checkout@v4.3.0
- uses: actions/checkout@v5.0.0
- name: Setup python
uses: actions/setup-python@v6
with:
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
RUNNER: macos-latest
name: "${{ matrix.RUNNER }} ${{ matrix.PYTHON.VERSION }} ${{ matrix.python.NOXSESSION }} ${{ matrix.PYTHON.NOTE }}"
steps:
- uses: actions/checkout@v4.3.0
- uses: actions/checkout@v5.0.0
- name: Setup python
uses: actions/setup-python@v6
with:
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:

name: "Windows ${{ matrix.WINDOWS.ARCH }} ${{ matrix.PYTHON.VERSION }} ${{ matrix.PYTHON.NOXSESSION }}"
steps:
- uses: actions/checkout@v4.3.0
- uses: actions/checkout@v5.0.0
- name: Setup python
uses: actions/setup-python@v6
with:
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
if: ${{ always() }}
timeout-minutes: 3
steps:
- uses: actions/checkout@v4.3.0
- uses: actions/checkout@v5.0.0
timeout-minutes: 3
with:
persist-credentials: false
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 @@ -65,7 +65,7 @@ jobs:
sed -i "s:ID=alpine:ID=NotpineForGHA:" /etc/os-release
if: startsWith(matrix.MANYLINUX.NAME, 'musllinux') && endsWith(matrix.MANYLINUX.NAME, 'aarch64')

- uses: actions/checkout@v4.3.0
- uses: actions/checkout@v5.0.0
with:
# The tag to build or the tag received by the tag event
ref: ${{ github.event.inputs.version || github.ref }}
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
BIN_PATH: '/Library/Frameworks/PythonT.framework/Versions/3.14/bin/python3.14t'
name: "Python ${{ matrix.PYTHON.VERSION }} ${{ matrix.PYTHON.ABI_VERSION }} on macOS"
steps:
- uses: actions/checkout@v4.3.0
- uses: actions/checkout@v5.0.0
with:
# The tag to build or the tag received by the tag event
ref: ${{ github.event.inputs.version || github.ref }}
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
PYTHON: {VERSION: '3.14t-dev', SODIUM_MSVC_VERSION: 'v143'}
name: "${{ matrix.PYTHON.VERSION }} ${{ matrix.WINDOWS.ARCH }} ${{ matrix.PYTHON.ABI_VERSION }}"
steps:
- uses: actions/checkout@v4.3.0
- uses: actions/checkout@v5.0.0
with:
# The tag to build or the tag received by the tag event
ref: ${{ github.event.inputs.version || github.ref }}
Expand Down
Loading