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
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
build-release:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v6
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v6
with:
persist-credentials: false
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v6
with:
python-version: "3.13"

Expand Down Expand Up @@ -74,4 +74,4 @@ jobs:
path: dist
merge-multiple: true
- name: Publish wheels to PyPI
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0
uses: pypa/gh-action-pypi-publish@ba38be9e461d3875417946c167d0b5f3d385a247 # v1.14.1
4 changes: 2 additions & 2 deletions .github/workflows/test-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ jobs:
test-docs:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v7.0.0
- uses: actions/checkout@v7.0.1
with:
# make rediraffecheckdiff requires git history to compare current
# commit with the main branch and previous releases.
fetch-depth: 0
persist-credentials: false

- uses: actions/setup-python@v6
- uses: actions/setup-python@v7
with:
python-version: "3.13"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-ssh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
runs_on: windows-2022

steps:
- uses: actions/checkout@v7.0.0
- uses: actions/checkout@v7.0.1
with:
persist-credentials: false

Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
docker run ipyparallel-sshd ping -n 1 $env:computername

- name: Install Python ${{ matrix.python }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python }}
cache: pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
pre: pre

steps:
- uses: actions/checkout@v7.0.0
- uses: actions/checkout@v7.0.1
with:
persist-credentials: false

Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:

- name: Install Python ${{ matrix.python }}
if: ${{ matrix.cluster_type != 'mpi' }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows-ssh-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v7.0.0
uses: actions/checkout@v7.0.1
with:
persist-credentials: false

- name: Log in to the Container registry
uses: docker/login-action@v4
uses: docker/login-action@v4.5.1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand Down
Loading