diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 712adc415e..deec402e0a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -35,7 +35,7 @@ jobs: build: needs: test name: Build & Push to container registries - runs-on: ubuntu-latest + runs-on: ubuntu-24.04-arm steps: - uses: actions/checkout@v4 @@ -118,7 +118,7 @@ jobs: needs: build if: startsWith(github.event.ref, 'refs/tags/v') name: Notify release - runs-on: ubuntu-latest + runs-on: ubuntu-24.04-arm steps: - name: Notify release run: | @@ -128,7 +128,7 @@ jobs: needs: build if: github.ref == 'refs/heads/develop' name: Deploy to ECS API Egov - runs-on: ubuntu-latest + runs-on: ubuntu-24.04-arm environment: name: Staging-egov url: https://careapi.ohc.network diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 019ec021aa..09bbfe86e7 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -17,14 +17,14 @@ jobs: build-docs: if: github.repository == 'ohcnetwork/care' name: Build docs - runs-on: ubuntu-latest + runs-on: ubuntu-24.04-arm steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: "3.13" - cache: 'pipenv' + cache: "pipenv" - name: Install pipenv run: pip install pipenv @@ -46,7 +46,7 @@ jobs: deploy-docs: if: github.repository == 'ohcnetwork/care' && github.ref == 'refs/heads/develop' name: Deploy docs - runs-on: ubuntu-latest + runs-on: ubuntu-24.04-arm needs: build-docs permissions: contents: write diff --git a/.github/workflows/issue-automation.yml b/.github/workflows/issue-automation.yml index 5b6ba19d4d..aebfdc3949 100644 --- a/.github/workflows/issue-automation.yml +++ b/.github/workflows/issue-automation.yml @@ -8,7 +8,7 @@ on: jobs: issue_opened_and_reopened: name: issue_opened_and_reopened - runs-on: ubuntu-latest + runs-on: ubuntu-24.04-arm if: github.repository == 'ohcnetwork/care' && github.event_name == 'issues' && github.event.action == 'opened' || github.event.action == 'reopened' steps: - name: 'Move issue to "Triage"' @@ -21,7 +21,7 @@ jobs: status_value: "Triage" issue_closed: name: issue_closed - runs-on: ubuntu-latest + runs-on: ubuntu-24.04-arm if: github.repository == 'ohcnetwork/care' && github.event_name == 'issues' && github.event.action == 'closed' steps: - name: 'Moved issue to "Done"' diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 37d7c67fad..2d167f9b4c 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -9,7 +9,7 @@ on: jobs: lint: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04-arm steps: - uses: actions/checkout@v4 with: diff --git a/.github/workflows/reusable-test.yml b/.github/workflows/reusable-test.yml index cf8bc45622..36222087bd 100644 --- a/.github/workflows/reusable-test.yml +++ b/.github/workflows/reusable-test.yml @@ -13,7 +13,7 @@ on: jobs: test: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04-arm steps: - uses: actions/checkout@v4