Skip to content

Commit

Permalink
bump checkout to 4
Browse files Browse the repository at this point in the history
  • Loading branch information
timkpaine committed Feb 23, 2024
1 parent fa23cfa commit f5e8156
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches:
- main
- tkp/linux
- tkp/linux
tags:
- v*
paths-ignore:
Expand Down Expand Up @@ -52,11 +52,11 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# for pull_request so we can do HEAD^2
fetch-depth: 2

- name: Initialize variables
uses: actions-ext/general/initialize-variables@v1
id: initialize
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand All @@ -109,7 +109,7 @@ jobs:

# - name: Install dependencies
# run: make develop-cpp

- name: Install dependencies
run: make develop-arrow-ubuntu
if: ${{ runner.os == 'Linux' }}
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run cibuildwheel
uses: actions-ext/python/run-cibuildwheel@v1
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Python
uses: actions-ext/python/setup@v1
Expand All @@ -228,14 +228,14 @@ jobs:

# - name: Install dependencies
# run: make develop-cpp

- name: Install dependencies
run: make develop-arrow-ubuntu
if: ${{ runner.os == 'Linux' }}

- name: Install dependencies
run: make develop-py

- name: Run cibuildwheel
uses: actions-ext/python/run-cibuildwheel@v1
with:
Expand Down Expand Up @@ -270,10 +270,10 @@ jobs:
- '3.9'
runs-on: ${{ matrix.os }}
if: ${{ needs.initialize.outputs.FULL_BUILD == 'true' }}

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Python
uses: actions-ext/python/setup@v1
Expand All @@ -286,14 +286,14 @@ jobs:

# - name: Install dependencies
# run: make develop-cpp

- name: Install dependencies
run: make develop-arrow-ubuntu
if: ${{ runner.os == 'Linux' }}

- name: Install dependencies
run: make develop-py

- name: Build sdist
run: make dist-sdist

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

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Python
uses: actions-ext/python/setup@v1
Expand Down Expand Up @@ -380,7 +380,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Python
uses: actions-ext/python/setup@v1
Expand All @@ -393,14 +393,14 @@ jobs:

# - name: Install dependencies
# run: make develop-cpp

- name: Install dependencies
run: make develop-arrow-ubuntu
if: ${{ runner.os == 'Linux' }}

- name: Install dependencies
run: make develop-py

- name: Download wheels
uses: actions-ext/python/download-dist@v1
with:
Expand All @@ -409,7 +409,7 @@ jobs:

- name: Test project
run: make tests-ci

- name: Upload test results
uses: EnricoMi/publish-unit-test-result-action@v2
with:
Expand Down Expand Up @@ -457,7 +457,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Python
uses: actions-ext/python/setup@v1
Expand All @@ -470,22 +470,22 @@ jobs:

# - name: Install dependencies
# run: make develop-cpp

- name: Install dependencies
run: make develop-arrow-ubuntu
if: ${{ runner.os == 'Linux' }}

- name: Install dependencies
run: make develop-py

- name: Download wheels
uses: actions-ext/python/download-dist@v1
with:
kind: "sdist"

- name: Test project
run: make tests-ci

- name: Upload test results
uses: EnricoMi/publish-unit-test-result-action@v2
with:
Expand Down

0 comments on commit f5e8156

Please sign in to comment.