Skip to content

Commit 064ab3e

Browse files
authored
Merge branch 'main' into patch-1
2 parents 5f4c6a0 + e00baea commit 064ab3e

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.github/workflows/*.lock.yml linguist-generated=true merge=ours

.github/workflows/build.yaml

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

1010
steps:
1111
- name: checkout-code
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515

@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
# checkout the code
3030
- name: checkout-code
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
with:
3333
fetch-depth: 0
3434

.github/workflows/main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
# checkout the code
1414
- name: checkout-code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818
# setup dotnet based on global.json
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
# checkout the code
3333
- name: checkout-code
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
with:
3636
fetch-depth: 0
3737
# setup dotnet based on global.json
@@ -44,7 +44,7 @@ jobs:
4444
shell: cmd
4545
run: ./build.cmd ci -release
4646
- name: Publish test results - release
47-
uses: dorny/test-reporter@v1
47+
uses: dorny/test-reporter@v2
4848
if: always()
4949
with:
5050
name: Report release tests

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
# checkout the code
1414
- name: checkout-code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818
# setup dotnet based on global.json

.github/workflows/test-report.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
test-report-release:
1414
runs-on: windows-latest
1515
steps:
16-
- uses: dorny/test-reporter@v1
16+
- uses: dorny/test-reporter@v2
1717
with:
1818
artifact: test-results-release # artifact name
1919
name: Report release tests # Name of the check run which will be created
@@ -23,7 +23,7 @@ jobs:
2323
test-report-debug:
2424
runs-on: windows-latest
2525
steps:
26-
- uses: dorny/test-reporter@v1
26+
- uses: dorny/test-reporter@v2
2727
with:
2828
artifact: test-results-debug # artifact name
2929
name: Report debug tests # Name of the check run which will be created

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
# checkout the code
1111
- name: checkout-code
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515

@@ -39,7 +39,7 @@ jobs:
3939
steps:
4040
# checkout the code
4141
- name: checkout-code
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343
with:
4444
fetch-depth: 0
4545

0 commit comments

Comments
 (0)