Skip to content

Commit f27cdb7

Browse files
Bump actions/checkout from 5.0.0 to 6.0.0 (#273)
1 parent 6b30612 commit f27cdb7

File tree

15 files changed

+107
-107
lines changed

15 files changed

+107
-107
lines changed

.github/workflows/arm64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ jobs:
3737
build_type: [arm64-Debug, arm64-Release]
3838

3939
steps:
40-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
40+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4141

4242
- name: Clone test repository
43-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
43+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4444
with:
4545
repository: walbourn/directxmathtest
4646
path: Tests

.github/workflows/arm64test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838
build_type: [arm64-Release]
3939

4040
steps:
41-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
41+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4242

4343
- name: Clone test repository
44-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
44+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4545
with:
4646
repository: walbourn/directxmathtest
4747
path: Tests

.github/workflows/asan.yml

Lines changed: 80 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -1,80 +1,80 @@
1-
# Copyright (c) Microsoft Corporation.
2-
# Licensed under the MIT License.
3-
#
4-
# http://go.microsoft.com/fwlink/?LinkId=248929
5-
6-
name: 'Address Sanitizer (x64)'
7-
8-
on:
9-
push:
10-
branches: "main"
11-
paths-ignore:
12-
- '*.md'
13-
- LICENSE
14-
- '.azuredevops/**'
15-
- '.nuget/*'
16-
- build/*.cmd
17-
- build/*.json
18-
- build/*.props
19-
- build/*.ps1
20-
- build/*.targets
21-
pull_request:
22-
branches: "main"
23-
paths-ignore:
24-
- '*.md'
25-
- LICENSE
26-
- '.azuredevops/**'
27-
- '.nuget/*'
28-
- build/*.cmd
29-
- build/*.json
30-
- build/*.props
31-
- build/*.ps1
32-
- build/*.targets
33-
34-
permissions:
35-
contents: read
36-
37-
jobs:
38-
build:
39-
runs-on: windows-2022
40-
timeout-minutes: 20
41-
42-
strategy:
43-
fail-fast: false
44-
45-
matrix:
46-
toolver: ['14.29', '14']
47-
build_type: [x64-Release]
48-
arch: [amd64]
49-
50-
steps:
51-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
52-
53-
- name: Clone test repository
54-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
55-
with:
56-
repository: walbourn/directxmathtest
57-
path: Tests
58-
ref: main
59-
60-
- name: 'Install Ninja'
61-
run: choco install ninja
62-
63-
- uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0
64-
with:
65-
arch: ${{ matrix.arch }}
66-
toolset: ${{ matrix.toolver }}
67-
68-
- name: 'Configure CMake'
69-
working-directory: ${{ github.workspace }}
70-
run: >
71-
cmake --preset=${{ matrix.build_type }}
72-
-DBUILD_TESTING=ON -DENABLE_ASAN=ON
73-
74-
- name: 'Build'
75-
working-directory: ${{ github.workspace }}
76-
run: cmake --build out\build\${{ matrix.build_type }}
77-
78-
- name: 'Run BVTs'
79-
working-directory: ${{ github.workspace }}
80-
run: ctest --preset=${{ matrix.build_type }} --output-on-failure
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
#
4+
# http://go.microsoft.com/fwlink/?LinkId=248929
5+
6+
name: 'Address Sanitizer (x64)'
7+
8+
on:
9+
push:
10+
branches: "main"
11+
paths-ignore:
12+
- '*.md'
13+
- LICENSE
14+
- '.azuredevops/**'
15+
- '.nuget/*'
16+
- build/*.cmd
17+
- build/*.json
18+
- build/*.props
19+
- build/*.ps1
20+
- build/*.targets
21+
pull_request:
22+
branches: "main"
23+
paths-ignore:
24+
- '*.md'
25+
- LICENSE
26+
- '.azuredevops/**'
27+
- '.nuget/*'
28+
- build/*.cmd
29+
- build/*.json
30+
- build/*.props
31+
- build/*.ps1
32+
- build/*.targets
33+
34+
permissions:
35+
contents: read
36+
37+
jobs:
38+
build:
39+
runs-on: windows-2022
40+
timeout-minutes: 20
41+
42+
strategy:
43+
fail-fast: false
44+
45+
matrix:
46+
toolver: ['14.29', '14']
47+
build_type: [x64-Release]
48+
arch: [amd64]
49+
50+
steps:
51+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
52+
53+
- name: Clone test repository
54+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
55+
with:
56+
repository: walbourn/directxmathtest
57+
path: Tests
58+
ref: main
59+
60+
- name: 'Install Ninja'
61+
run: choco install ninja
62+
63+
- uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0
64+
with:
65+
arch: ${{ matrix.arch }}
66+
toolset: ${{ matrix.toolver }}
67+
68+
- name: 'Configure CMake'
69+
working-directory: ${{ github.workspace }}
70+
run: >
71+
cmake --preset=${{ matrix.build_type }}
72+
-DBUILD_TESTING=ON -DENABLE_ASAN=ON
73+
74+
- name: 'Build'
75+
working-directory: ${{ github.workspace }}
76+
run: cmake --build out\build\${{ matrix.build_type }}
77+
78+
- name: 'Run BVTs'
79+
working-directory: ${{ github.workspace }}
80+
run: ctest --preset=${{ matrix.build_type }} --output-on-failure

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ jobs:
4141

4242
steps:
4343
- name: Checkout repository
44-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
44+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4545

4646
- name: Clone test repository
47-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
47+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4848
with:
4949
repository: walbourn/directxmathtest
5050
path: Tests

.github/workflows/cxx.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ jobs:
5959
arch: amd64_arm64
6060

6161
steps:
62-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
62+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
6363

6464
- name: Clone test repository
65-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
65+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
6666
with:
6767
repository: walbourn/directxmathtest
6868
path: Tests

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
29+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
3030
with:
3131
fetch-depth: 0
3232

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ jobs:
7676
arch: amd64_arm64
7777

7878
steps:
79-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
79+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
8080

8181
- name: Clone test repository
82-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
82+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
8383
with:
8484
repository: walbourn/directxmathtest
8585
path: Tests

.github/workflows/msbuild.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ jobs:
4242
platform: ARM64
4343

4444
steps:
45-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
45+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4646

4747
- name: Clone test repository
48-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
48+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4949
with:
5050
repository: walbourn/directxmathtest
5151
path: Tests

.github/workflows/msbuildex.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@ jobs:
9797
build_type: 'x87 Release'
9898

9999
steps:
100-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
100+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
101101

102102
- name: Clone test repository
103-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
103+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
104104
with:
105105
repository: walbourn/directxmathtest
106106
path: Tests

.github/workflows/msvc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ jobs:
4040

4141
steps:
4242
- name: Checkout repository
43-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
43+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4444

4545
- name: Clone test repository
46-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
46+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4747
with:
4848
repository: walbourn/directxmathtest
4949
path: Tests

0 commit comments

Comments
 (0)