From 578bc1658c57991032e8460e0078f34df3aad9f5 Mon Sep 17 00:00:00 2001 From: Raffael Herrmann Date: Tue, 7 Dec 2021 21:05:24 +0100 Subject: [PATCH] Switch from windows-latest (2019) to windows-2022 for net6.0 support --- .github/workflows/wf-build-release-ci.yml | 8 ++++---- .github/workflows/wf-build-release.yml | 8 ++++---- .github/workflows/wf-build-test.yml | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/wf-build-release-ci.yml b/.github/workflows/wf-build-release-ci.yml index 423f9579..ffec6e5e 100644 --- a/.github/workflows/wf-build-release-ci.yml +++ b/.github/workflows/wf-build-release-ci.yml @@ -6,7 +6,7 @@ on: workflow_dispatch: jobs: build: - runs-on: windows-latest + runs-on: windows-2022 env: ACTIONS_ALLOW_UNSECURE_COMMANDS: true steps: @@ -33,7 +33,7 @@ jobs: test: needs: build - runs-on: windows-latest + runs-on: windows-2022 steps: - name: Download artifacts uses: actions/download-artifact@v1.0.0 @@ -90,7 +90,7 @@ jobs: pack-push-ci: needs: test - runs-on: windows-latest + runs-on: windows-2022 env: GH_PKG_SEC: ${{ secrets.GH_PKG_REPO }} steps: @@ -124,7 +124,7 @@ jobs: clean: needs: [build, test, pack-push-ci] if: always() - runs-on: windows-latest + runs-on: windows-2022 steps: - name: Delete artifacts uses: GeekyEggo/delete-artifact@v1.0.0 diff --git a/.github/workflows/wf-build-release.yml b/.github/workflows/wf-build-release.yml index 84c534d9..09a452a0 100644 --- a/.github/workflows/wf-build-release.yml +++ b/.github/workflows/wf-build-release.yml @@ -7,7 +7,7 @@ on: required: true jobs: build: - runs-on: windows-latest + runs-on: windows-2022 env: ACTIONS_ALLOW_UNSECURE_COMMANDS: true steps: @@ -34,7 +34,7 @@ jobs: test: needs: build - runs-on: windows-latest + runs-on: windows-2022 steps: - name: Download artifacts uses: actions/download-artifact@v1.0.0 @@ -90,7 +90,7 @@ jobs: pack-push-release: needs: test - runs-on: windows-latest + runs-on: windows-2022 env: GH_PKG_SEC: ${{ secrets.GH_PKG_REPO }} steps: @@ -120,7 +120,7 @@ jobs: clean: needs: [build, test, pack-push-release] if: always() - runs-on: windows-latest + runs-on: windows-2022 steps: - name: Delete artifacts uses: GeekyEggo/delete-artifact@v1.0.0 diff --git a/.github/workflows/wf-build-test.yml b/.github/workflows/wf-build-test.yml index 000d647f..6a939bd5 100644 --- a/.github/workflows/wf-build-test.yml +++ b/.github/workflows/wf-build-test.yml @@ -6,7 +6,7 @@ on: workflow_dispatch: jobs: build: - runs-on: windows-latest + runs-on: windows-2022 env: ACTIONS_ALLOW_UNSECURE_COMMANDS: true steps: @@ -33,7 +33,7 @@ jobs: test: needs: build - runs-on: windows-latest + runs-on: windows-2022 steps: - name: Download artifacts uses: actions/download-artifact@v1.0.0 @@ -60,7 +60,7 @@ jobs: clean: needs: [build, test] if: always() - runs-on: windows-latest + runs-on: windows-2022 steps: - name: Delete artifacts uses: GeekyEggo/delete-artifact@v1.0.0