diff --git a/.github/workflows/build-verify.yml b/.github/workflows/build-verify.yml index 92d53fe..ce31014 100644 --- a/.github/workflows/build-verify.yml +++ b/.github/workflows/build-verify.yml @@ -18,9 +18,8 @@ on: type: choice description: 'The type of runner to use' required: true - default: 'ubuntu-20.04' + default: 'ubuntu-22.04' options: - - 'ubuntu-20.04' - 'ubuntu-22.04' - 'debian-arm64-latest' @@ -30,10 +29,10 @@ jobs: strategy: fail-fast: false matrix: - node-version: [ 18.x, 20.x ] + node-version: [ 20.x ] # The type of runner that the job will run on - runs-on: ${{ github.event.inputs.runner-type || 'ubuntu-20.04' }} + runs-on: ${{ github.event.inputs.runner-type || 'ubuntu-22.04' }} steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4b9917d..a5c9f16 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -57,7 +57,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ windows-latest, ubuntu-20.04, macos-latest, debian-arm64-latest ] + os: [ windows-latest, ubuntu-22.04, macos-latest, debian-arm64-latest ] runs-on: ${{ matrix.os }}