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
2 changes: 1 addition & 1 deletion .github/workflows/build-linux-buildenv.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout this repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Build image
working-directory: .github/workflows/tools/containers/buildenv-git-annex
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
build-version: ${{ steps.build-version.outputs.version }}
steps:
- name: Checkout this repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout this repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Create pending PR status
if: github.event.inputs.pr != ''
Expand Down Expand Up @@ -333,7 +333,7 @@ jobs:
needs: build-package
steps:
- name: Checkout this repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Create pending PR status
if: github.event.inputs.pr != ''
Expand Down Expand Up @@ -390,7 +390,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout this repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Create pending PR status
if: github.event.inputs.pr != ''
Expand Down Expand Up @@ -448,7 +448,7 @@ jobs:

# needed for ssh certs under ubuntu and tox.ini everywhere
- name: Checkout datalad
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: datalad/datalad
path: datalad
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build-ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build-version: ${{ steps.build-version.outputs.version }}
steps:
- name: Checkout this repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

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

- name: Clone datalad/git-annex-ci-client-jobs
if: contains(fromJSON('["schedule", "workflow_dispatch"]'), github.event_name)
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: datalad/git-annex-ci-client-jobs
fetch-depth: 1
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout this repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Create pending PR status
if: github.event.inputs.pr != ''
Expand Down Expand Up @@ -382,7 +382,7 @@ jobs:
needs: build-package
steps:
- name: Checkout this repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Create pending PR status
if: github.event.inputs.pr != ''
Expand Down Expand Up @@ -436,7 +436,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout this repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Create pending PR status
if: github.event.inputs.pr != ''
Expand Down Expand Up @@ -498,7 +498,7 @@ jobs:

# needed for ssh certs under ubuntu and tox.ini everywhere
- name: Checkout datalad
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: datalad/datalad
path: datalad
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
build-version: ${{ steps.build-version.outputs.version }}
steps:
- name: Checkout this repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout this repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Create pending PR status
if: github.event.inputs.pr != ''
Expand Down Expand Up @@ -325,7 +325,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout this repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Create pending PR status
if: github.event.inputs.pr != ''
Expand Down Expand Up @@ -432,7 +432,7 @@ jobs:

# needed for ssh certs under ubuntu and tox.ini everywhere
- name: Checkout datalad
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: datalad/datalad
path: datalad
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/daily-status.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout this repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Checkout ci-reports repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: datalad/git-annex-ci-reports
token: ${{ secrets.DATALAD_GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Python
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-mirror.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout this repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
ref: upstream/master
Expand Down
Loading