Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/wf-build-release-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:
jobs:
build:
runs-on: windows-2019
runs-on: windows-2025
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
steps:
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:

test:
needs: build
runs-on: windows-2019
runs-on: windows-2025
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:

pack-push-ci:
needs: test
runs-on: windows-2019
runs-on: windows-2025
env:
GH_PKG_SEC: ${{ secrets.GITHUB_TOKEN }}
steps:
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
clean:
needs: [build, test, pack-push-ci]
if: always()
runs-on: windows-2019
runs-on: windows-2025
steps:
- name: Delete artifacts
uses: GeekyEggo/delete-artifact@v5
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/wf-build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
required: true
jobs:
build:
runs-on: windows-2019
runs-on: windows-2025
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
steps:
Expand Down Expand Up @@ -38,7 +38,7 @@ jobs:

test:
needs: build
runs-on: windows-2019
runs-on: windows-2025
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:

pack-push-release:
needs: test
runs-on: windows-2019
runs-on: windows-2025
env:
GH_PKG_SEC: ${{ secrets.GITHUB_TOKEN }}
steps:
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
clean:
needs: [build, test, pack-push-release]
if: always()
runs-on: windows-2019
runs-on: windows-2025
steps:
- name: Delete artifacts
uses: GeekyEggo/delete-artifact@v5
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wf-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:
jobs:
build:
runs-on: windows-2019
runs-on: windows-2025
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
steps:
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:

test:
needs: build
runs-on: windows-2019
runs-on: windows-2025
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
clean:
needs: [build, test]
if: always()
runs-on: windows-2019
runs-on: windows-2025
steps:
- name: Delete artifacts
uses: GeekyEggo/delete-artifact@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wf-verify-formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
format:
runs-on: windows-2019
runs-on: windows-2025
steps:
- uses: actions/checkout@v4
name: Checkout Code
Expand Down
Loading