diff --git a/.github/workflows/action-format.yml b/.github/workflows/action-format.yml index bf8c156..356ac70 100644 --- a/.github/workflows/action-format.yml +++ b/.github/workflows/action-format.yml @@ -7,7 +7,7 @@ on: jobs: format: name: 'Format code' - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/format') steps: - name: 'Post acknowledgement that it will format code' diff --git a/.github/workflows/ci.js.yml b/.github/workflows/ci.js.yml index 5ba05fa..0a8d176 100644 --- a/.github/workflows/ci.js.yml +++ b/.github/workflows/ci.js.yml @@ -9,7 +9,7 @@ on: jobs: precheck: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 @@ -25,7 +25,7 @@ jobs: run: bin/lint.sh ci: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 strategy: matrix: diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index e47d44c..3036666 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -16,7 +16,7 @@ on: jobs: analyze: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 strategy: fail-fast: false diff --git a/.github/workflows/pr.ci.js.yml b/.github/workflows/pr.ci.js.yml index 09674e2..b5779f3 100644 --- a/.github/workflows/pr.ci.js.yml +++ b/.github/workflows/pr.ci.js.yml @@ -7,7 +7,7 @@ on: pull_request jobs: precheck: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout PR @@ -25,7 +25,7 @@ jobs: run: bin/lint.sh ci: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 strategy: matrix: diff --git a/.github/workflows/verify-code-formatting.yml b/.github/workflows/verify-code-formatting.yml index 5df33bb..fb73fcf 100644 --- a/.github/workflows/verify-code-formatting.yml +++ b/.github/workflows/verify-code-formatting.yml @@ -7,7 +7,7 @@ on: jobs: verify: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: 'Checkout code' uses: actions/checkout@v3