diff --git a/.github/workflows/build_releases.yml b/.github/workflows/build_releases.yml index a8618e41..8f052eab 100644 --- a/.github/workflows/build_releases.yml +++ b/.github/workflows/build_releases.yml @@ -84,13 +84,13 @@ jobs: # Windows (x86-64, x86) - { - os: "windows-2019", + os: "windows-2022", target: "x86_64-pc-windows-msvc", cross: false, } - - { os: "windows-2019", target: "i686-pc-windows-msvc", cross: false } + - { os: "windows-2022", target: "i686-pc-windows-msvc", cross: false } - { - os: "windows-2019", + os: "windows-2022", target: "x86_64-pc-windows-gnu", cross: false, } @@ -165,7 +165,7 @@ jobs: mv "$MANPAGE_DIR" manpage - name: Bundle release and completion (Windows) - if: matrix.info.os == 'windows-2019' + if: matrix.info.os == 'windows-2022' shell: bash run: | cp target/${{ matrix.info.target }}/release/btm.exe btm.exe @@ -174,7 +174,7 @@ jobs: echo "ASSET=bottom_${{ matrix.info.target }}.zip" >> $GITHUB_ENV - name: Bundle release and completion (Linux and macOS) - if: matrix.info.os != 'windows-2019' + if: matrix.info.os != 'windows-2022' shell: bash run: | cp target/${{ matrix.info.target }}/release/btm ./btm @@ -302,7 +302,7 @@ jobs: build-msi: name: "Build MSI (WiX) installer" - runs-on: "windows-2019" + runs-on: "windows-2022" timeout-minutes: 12 steps: - name: Checkout repository diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5de05579..67081566 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -76,7 +76,7 @@ jobs: - { os: "macos-13", target: "x86_64-apple-darwin", cross: false } - { os: "macos-14", target: "aarch64-apple-darwin", cross: false } - { - os: "windows-2019", + os: "windows-2022", target: "x86_64-pc-windows-msvc", cross: false, } @@ -163,9 +163,9 @@ jobs: cross: true, } - - { os: "windows-2019", target: "i686-pc-windows-msvc", cross: false } + - { os: "windows-2022", target: "i686-pc-windows-msvc", cross: false } - { - os: "windows-2019", + os: "windows-2022", target: "x86_64-pc-windows-gnu", cross: false, } @@ -184,7 +184,7 @@ jobs: rust: "beta", } - { - os: "windows-2019", + os: "windows-2022", target: "x86_64-pc-windows-msvc", cross: false, rust: "beta", diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index c25c6584..8322060d 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -44,7 +44,7 @@ jobs: info: - { os: "ubuntu-latest", target: "x86_64-unknown-linux-gnu" } - { os: "macos-14", target: "aarch64-apple-darwin", cross: false } - - { os: "windows-2019", target: "x86_64-pc-windows-msvc" } + - { os: "windows-2022", target: "x86_64-pc-windows-msvc" } steps: - name: Checkout repository uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7