-
Notifications
You must be signed in to change notification settings - Fork 250
Expand file tree
/
Copy pathvalidate-windows-binary-signature.yaml
More file actions
45 lines (42 loc) · 1.41 KB
/
validate-windows-binary-signature.yaml
File metadata and controls
45 lines (42 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Windows Files and Images Check
on:
pull_request:
paths:
- '.github/workflows/validate-windows-binary-signature.yaml'
- 'vhdbuilder/packer/test/windows-files-check.ps1'
- 'parts/common/components.json'
- 'vhdbuilder/packer/windows/**'
- 'vhdbuilder/packer/windows/windows-vhd-configuration.ps1'
- 'vhdbuilder/packer/windows/windows_settings.json'
- 'vhdbuilder/packer/windows/components_json_helpers.ps1'
jobs:
check-files-for-ws2022:
name: Check for Windows 2022
runs-on: windows-latest
steps:
- name: Check out repository code
uses: actions/checkout@v6
- name: Run check script for 2022-containerd
shell: powershell
run: |
./vhdbuilder/packer/test/windows-files-check.ps1 2022-containerd
check-files-for-ws2025:
name: Check for Windows 2025
runs-on: windows-latest
steps:
- name: Check out repository code
uses: actions/checkout@v6
- name: Run check script for 2025
shell: powershell
run: |
./vhdbuilder/packer/test/windows-files-check.ps1 2025
check-files-for-ws23H2:
name: Check for Windows 23H2
runs-on: windows-latest
steps:
- name: Check out repository code
uses: actions/checkout@v6
- name: Run check script for 23H2
shell: powershell
run: |
./vhdbuilder/packer/test/windows-files-check.ps1 23H2