Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Prepare repository
# Fetch full git history and tags
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testdask.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ github.repository }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testpydra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v4
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
name: archive
path: archive/
- name: Fetch repository
uses: actions/checkout@v3
uses: actions/checkout@v4
if: matrix.install == 'repo'

- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testsingularity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
echo "RELEASE_VERSION=v3.7.1" >> $GITHUB_ENV
echo "NO_ET=TRUE" >> $GITHUB_ENV
- name: Setup Singularity
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: hpcng/singularity
ref: 'v3.7.1'
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:


- name: Checkout Pydra repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ github.repository }}
- name: Install pydra (test)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testslurm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- name: Disable etelemetry
run: echo "NO_ET=TRUE" >> $GITHUB_ENV
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Pull docker image
run: |
docker pull $DOCKER_IMAGE
Expand Down