Skip to content

Commit f9f010f

Browse files
authored
Merge pull request #2 from AztecProtocol/ir/fix-ci-runners
ci: fix runner types
2 parents 32a8e3e + 27a8d29 commit f9f010f

6 files changed

Lines changed: 13 additions & 5 deletions

File tree

.github/workflows/canary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
canary:
1414
name: Canary Release
1515
environment: Development
16-
runs-on: ubuntu-latest-m
16+
runs-on: ubuntu-latest
1717
timeout-minutes: 60
1818

1919
env:

.github/workflows/main-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,6 @@ concurrency:
1212
jobs:
1313
tests:
1414
uses: AztecProtocol/aztec-ci-actions/.github/workflows/run-tests.yml@431859e477234b8690eb1f80d1305d2e34f10f1b # v0.1.1
15+
with:
16+
runner: ubuntu-latest
1517
secrets: inherit

.github/workflows/pr-checks.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,14 @@ jobs:
2222

2323
checks:
2424
uses: AztecProtocol/aztec-ci-actions/.github/workflows/run-tests.yml@431859e477234b8690eb1f80d1305d2e34f10f1b # v0.1.1
25+
with:
26+
runner: ubuntu-latest
2527
secrets: inherit
2628

2729
benchmark:
28-
uses: AztecProtocol/aztec-benchmark/.github/workflows/pr-benchmark.yml@eea38b7fe8753ea970dea91edc1b45df46fa5987 # main
30+
uses: AztecProtocol/aztec-benchmark/.github/workflows/pr-benchmark.yml@c55ffd7470d4792ca106c31f2c1d1d5c5697079a # v5.0.0
31+
with:
32+
runner: ubuntu-latest
2933
permissions:
3034
contents: read
3135
pull-requests: write

.github/workflows/pre-release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ jobs:
99
uses: AztecProtocol/aztec-ci-actions/.github/workflows/pre-release.yml@431859e477234b8690eb1f80d1305d2e34f10f1b # v0.1.1
1010
with:
1111
package-dir: export/@aztec/aztec-standards
12+
runner: ubuntu-latest
1213
secrets: inherit
1314
permissions:
1415
contents: write

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
release:
1818
name: Release
1919
environment: Production
20-
runs-on: ubuntu-latest-m
20+
runs-on: ubuntu-latest
2121
timeout-minutes: 60
2222
permissions:
2323
contents: read # checkout (the tag already exists)

.github/workflows/update-baseline.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name: Update Benchmark Baseline
33
on:
44
push:
55
branches:
6-
- dev
76
- main
87
schedule:
98
- cron: '0 0 1 * *'
@@ -15,7 +14,9 @@ concurrency:
1514

1615
jobs:
1716
baseline:
18-
uses: AztecProtocol/aztec-benchmark/.github/workflows/update-baseline.yml@eea38b7fe8753ea970dea91edc1b45df46fa5987 # main
17+
uses: AztecProtocol/aztec-benchmark/.github/workflows/update-baseline.yml@c55ffd7470d4792ca106c31f2c1d1d5c5697079a # v5.0.0
18+
with:
19+
runner: ubuntu-latest
1920
permissions:
2021
contents: read
2122
actions: write

0 commit comments

Comments
 (0)