Skip to content

Commit 1d74629

Browse files
committed
Update github actions to use windows-2025 runner
1 parent 95a102c commit 1d74629

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/build/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This action will build a .NET Windows Forms desktop application
2-
# It must be executed from a job using windows-2019
2+
# It must be executed from a job using windows-2025
33

44

55
name: Build
@@ -44,7 +44,7 @@ runs:
4444
using: 'composite'
4545
steps:
4646
## Install the .NET Core workload
47-
## This is not required since the windows-2019 runner comes with pre-installed .NET Framework
47+
## This is not required since the windows-2025 runner comes with pre-installed .NET Framework
4848
#- name: Install .NET Core
4949
# uses: actions/setup-dotnet@v4
5050
# with:

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on: [ push, pull_request ]
66
jobs:
77
analyze:
88
name: Analyze
9-
runs-on: windows-2019
9+
runs-on: windows-2025
1010
permissions:
1111
actions: read
1212
contents: read
@@ -36,6 +36,6 @@ jobs:
3636
with:
3737
configuration: Debug
3838
build_options: '/p:UseSharedCompilation=false'
39-
39+
4040
- name: Perform CodeQL Analysis
4141
uses: github/codeql-action/analyze@v3

.github/workflows/dotnet-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010

1111
portable:
12-
runs-on: windows-2019
12+
runs-on: windows-2025
1313
steps:
1414
- uses: actions/checkout@v4
1515

@@ -61,7 +61,7 @@ jobs:
6161
asset_content_type: application/zip
6262

6363
installer:
64-
runs-on: windows-2019
64+
runs-on: windows-2025
6565
steps:
6666
- name: Checkout
6767
uses: actions/checkout@v4

.github/workflows/dotnet-testbuild.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on: [ push, pull_request ]
66

77
jobs:
88
build:
9-
runs-on: windows-2019
9+
runs-on: windows-2025
1010
strategy:
1111
matrix:
1212
flavor: [Installer, Portable]
@@ -19,7 +19,7 @@ jobs:
1919
artifact: ${{ matrix.flavor == 'Portable' && 'PasteIntoFile_debug_portable' || '' }}
2020

2121
installer:
22-
runs-on: windows-2019
22+
runs-on: windows-2025
2323
steps:
2424
- name: Checkout
2525
uses: actions/checkout@v4
@@ -39,17 +39,17 @@ jobs:
3939
candle releaseFiles.wxs
4040
candle PasteIntoFile.wxs
4141
light -b ../${{steps.build.outputs.path}} releaseFiles.wixobj PasteIntoFile.wixobj -ext WixNetFxExtension -out Installer.msi
42-
42+
4343
4444
# test:
45-
# runs-on: windows-2019 # For a list of available runner types, refer to https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
45+
# runs-on: windows-2025 # For a list of available runner types, refer to https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
4646
#
4747
# steps:
4848
# - name: Checkout
4949
# uses: actions/checkout@v4
5050
#
5151
# ## Install the .NET Core workload
52-
# ## This is not required since the windows-2019 runner comes with pre-installed .NET Framework
52+
# ## This is not required since the windows-2025 runner comes with pre-installed .NET Framework
5353
# #- name: Install .NET Core
5454
# # uses: actions/setup-dotnet@v4
5555
# # with:

0 commit comments

Comments
 (0)