Skip to content

Commit 70e92bc

Browse files
committed
Use zondax runners
1 parent fa39dd8 commit 70e92bc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414

1515
jobs:
1616
lint:
17-
runs-on: ubuntu-latest
17+
runs-on: ${{ github.repository_owner == 'zondax' && 'zondax-runners' || 'ubuntu-latest' }}
1818
steps:
1919
- uses: actions/checkout@v4
2020
with:

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ on: push
33

44
jobs:
55
configure:
6-
runs-on: ubuntu-latest
6+
runs-on: ${{ github.repository_owner == 'zondax' && 'zondax-runners' || 'ubuntu-latest' }}
77
outputs:
88
uid_gid: ${{ steps.get-user.outputs.uid_gid }}
99
steps:
1010
- id: get-user
1111
run: echo "uid_gid=$(id -u):$(id -g)" >> $GITHUB_OUTPUT
1212

1313
build:
14-
runs-on: ubuntu-latest
14+
runs-on: ${{ github.repository_owner == 'zondax' && 'zondax-runners' || 'ubuntu-latest' }}
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v4
@@ -22,7 +22,7 @@ jobs:
2222
run: make test
2323

2424
check_version:
25-
runs-on: ubuntu-latest
25+
runs-on: ${{ github.repository_owner == 'zondax' && 'zondax-runners' || 'ubuntu-latest' }}
2626
outputs:
2727
version: ${{ steps.get-version.outputs.version }}
2828
exists: ${{ steps.get-version.outputs.exists }}
@@ -48,7 +48,7 @@ jobs:
4848
run: exit 1
4949

5050
tag:
51-
runs-on: ubuntu-latest
51+
runs-on: ${{ github.repository_owner == 'zondax' && 'zondax-runners' || 'ubuntu-latest' }}
5252
needs:
5353
- build
5454
- check_version

0 commit comments

Comments
 (0)