diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 89146ec7..37e5a404 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -9,7 +9,7 @@ on: jobs: test: name: Test - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v4 @@ -33,11 +33,11 @@ jobs: build: name: Build - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 needs: [test] strategy: matrix: - node-version: ["16", "18", "current"] + node-version: ["18", "20", "current"] steps: - name: Checkout @@ -58,7 +58,7 @@ jobs: automerge: name: Merge Automatically needs: [test, build] - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 permissions: pull-requests: write diff --git a/.github/workflows/quality.yaml b/.github/workflows/quality.yaml index d8489dce..03fd191c 100644 --- a/.github/workflows/quality.yaml +++ b/.github/workflows/quality.yaml @@ -9,7 +9,7 @@ on: jobs: prettier: name: Prettier - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v4 @@ -32,7 +32,7 @@ jobs: eslint: name: ESLint - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v4 @@ -40,7 +40,7 @@ jobs: - name: Set up Node uses: actions/setup-node@v3 with: - node-version: "16" + node-version: "18" cache: "yarn" - name: Install Dependencies diff --git a/.github/workflows/release-drafter.yaml b/.github/workflows/release-drafter.yaml index 3516ea1d..75e34b68 100644 --- a/.github/workflows/release-drafter.yaml +++ b/.github/workflows/release-drafter.yaml @@ -8,7 +8,7 @@ on: jobs: release: name: Update Release - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Publish Release uses: release-drafter/release-drafter@v5