From edf431a8fdde0a957e58157ff687224815aeb444 Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Wed, 17 Apr 2024 12:20:03 +0200 Subject: [PATCH] ci(github): Hard-code Ubuntu 22.04 for website deployment Align with other workflows. Signed-off-by: Sebastian Schuberth --- .github/workflows/website-deploy.yml | 4 ++-- .github/workflows/website-test.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/website-deploy.yml b/.github/workflows/website-deploy.yml index 556225f6ac3c5..5cda85f0397ba 100644 --- a/.github/workflows/website-deploy.yml +++ b/.github/workflows/website-deploy.yml @@ -8,7 +8,7 @@ on: jobs: build: name: Website Build - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v3 @@ -34,6 +34,6 @@ jobs: environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/deploy-pages@v2 diff --git a/.github/workflows/website-test.yml b/.github/workflows/website-test.yml index 5baec0990771b..446c3df0031a3 100644 --- a/.github/workflows/website-test.yml +++ b/.github/workflows/website-test.yml @@ -8,7 +8,7 @@ on: jobs: test: name: Website Test - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v3