Skip to content

Commit 9ff9036

Browse files
authored
Merge pull request #2742 from ohcnetwork/vysakh/upgrade-runners
switched to ubuntu-24.04-arm runners
2 parents 6197d83 + 112b988 commit 9ff9036

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
build:
3838
needs: test
3939
name: Build & Push to container registries
40-
runs-on: ubuntu-latest
40+
runs-on: ubuntu-24.04-arm
4141
steps:
4242
- uses: actions/checkout@v4
4343

@@ -119,7 +119,7 @@ jobs:
119119
needs: build
120120
if: startsWith(github.event.ref, 'refs/tags/v')
121121
name: Notify release
122-
runs-on: ubuntu-latest
122+
runs-on: ubuntu-24.04-arm
123123
steps:
124124
- name: Notify release
125125
run: |
@@ -129,7 +129,7 @@ jobs:
129129
needs: build
130130
if: github.ref == 'refs/heads/develop'
131131
name: Deploy to ECS API Egov
132-
runs-on: ubuntu-latest
132+
runs-on: ubuntu-24.04-arm
133133
environment:
134134
name: Staging-egov
135135
url: https://careapi.ohc.network

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
build-docs:
1818
if: github.repository == 'ohcnetwork/care'
1919
name: Build docs
20-
runs-on: ubuntu-latest
20+
runs-on: ubuntu-24.04-arm
2121
steps:
2222
- uses: actions/checkout@v4
2323

2424
- uses: actions/setup-python@v5
2525
with:
2626
python-version: "3.13"
27-
cache: 'pipenv'
27+
cache: "pipenv"
2828

2929
- name: Install pipenv
3030
run: pip install pipenv
@@ -46,7 +46,7 @@ jobs:
4646
deploy-docs:
4747
if: github.repository == 'ohcnetwork/care' && github.ref == 'refs/heads/develop'
4848
name: Deploy docs
49-
runs-on: ubuntu-latest
49+
runs-on: ubuntu-24.04-arm
5050
needs: build-docs
5151
permissions:
5252
contents: write

.github/workflows/issue-automation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
issue_opened_and_reopened:
1010
name: issue_opened_and_reopened
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-24.04-arm
1212
if: github.repository == 'ohcnetwork/care' && github.event_name == 'issues' && github.event.action == 'opened' || github.event.action == 'reopened'
1313
steps:
1414
- name: 'Move issue to "Triage"'
@@ -21,7 +21,7 @@ jobs:
2121
status_value: "Triage"
2222
issue_closed:
2323
name: issue_closed
24-
runs-on: ubuntu-latest
24+
runs-on: ubuntu-24.04-arm
2525
if: github.repository == 'ohcnetwork/care' && github.event_name == 'issues' && github.event.action == 'closed'
2626
steps:
2727
- name: 'Moved issue to "Done"'

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
lint:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-24.04-arm
1313
steps:
1414
- uses: actions/checkout@v4
1515
with:

.github/workflows/reusable-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
test:
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04-arm
1717
steps:
1818
- uses: actions/checkout@v4
1919

0 commit comments

Comments
 (0)