Skip to content

Commit b463f19

Browse files
Third Party Notices
1 parent fcd1e5a commit b463f19

2 files changed

Lines changed: 157 additions & 8 deletions

File tree

.github/workflows/release.yml

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
name: Test
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
1616

17-
- uses: actions/setup-dotnet@v4
17+
- uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4
1818
with:
1919
dotnet-version: '10.0.x'
2020

@@ -24,6 +24,7 @@ jobs:
2424
build:
2525
name: Build ${{ matrix.rid }}
2626
needs: test
27+
if: github.event_name != 'pull_request'
2728
runs-on: ${{ matrix.os }}
2829
strategy:
2930
matrix:
@@ -36,9 +37,9 @@ jobs:
3637
- { rid: osx-arm64, os: macos-latest, ext: "" }
3738

3839
steps:
39-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
4041

41-
- uses: actions/setup-dotnet@v4
42+
- uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4
4243
with:
4344
dotnet-version: '10.0.x'
4445

@@ -49,6 +50,8 @@ jobs:
4950
--self-contained true
5051
-p:PublishSingleFile=true
5152
-p:PublishReadyToRun=true
53+
-p:DebugType=none
54+
-p:DebugSymbols=false
5255
-c Release
5356
-o publish/${{ matrix.rid }}
5457
@@ -58,7 +61,7 @@ jobs:
5861
mv "publish/${{ matrix.rid }}/OpenAPIDyalog${{ matrix.ext }}" \
5962
"publish/${{ matrix.rid }}/openapidyalog-${{ matrix.rid }}${{ matrix.ext }}"
6063
61-
- uses: actions/upload-artifact@v4
64+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
6265
with:
6366
name: openapidyalog-${{ matrix.rid }}
6467
path: publish/${{ matrix.rid }}/openapidyalog-${{ matrix.rid }}${{ matrix.ext }}
@@ -71,13 +74,17 @@ jobs:
7174
permissions:
7275
contents: write
7376
steps:
74-
- uses: actions/download-artifact@v4
77+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
78+
79+
- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
7580
with:
7681
path: artifacts
7782
merge-multiple: true
7883

79-
- name: Generate checksums
80-
run: cd artifacts && sha256sum * > SHA256SUMS.txt
84+
- name: Stage notices and checksums
85+
run: |
86+
cp THIRD_PARTY_NOTICES.txt artifacts/
87+
cd artifacts && sha256sum * > SHA256SUMS.txt
8188
8289
- uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2.5.0
8390
with:

THIRD_PARTY_NOTICES.txt

Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
1+
THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
2+
3+
This product incorporates components from the projects listed below. The original
4+
copyright notices and the licenses under which Dyalog Ltd. received such components
5+
are set forth below. Dyalog Ltd. licenses these components to you under the terms
6+
described in this file; Dyalog Ltd. reserves all other rights not expressly granted.
7+
8+
=======================================================================
9+
10+
CaseConverter 2.0.1
11+
Project: https://github.com/markcastle/CaseConverter
12+
License: MIT
13+
14+
Copyright (c) 2021-2023 Captive Reality Ltd.
15+
16+
Permission is hereby granted, free of charge, to any person obtaining a copy
17+
of this software and associated documentation files (the "Software"), to deal
18+
in the Software without restriction, including without limitation the rights
19+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
20+
copies of the Software, and to permit persons to whom the Software is
21+
furnished to do so, subject to the following conditions:
22+
23+
The above copyright notice and this permission notice shall be included in all
24+
copies or substantial portions of the Software.
25+
26+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
29+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
30+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
31+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32+
SOFTWARE.
33+
34+
=======================================================================
35+
36+
Microsoft.Extensions.Logging 10.0.0
37+
Microsoft.Extensions.Logging.Console 10.0.0
38+
Project: https://github.com/dotnet/runtime
39+
License: MIT
40+
41+
Copyright (c) .NET Foundation and Contributors
42+
43+
Permission is hereby granted, free of charge, to any person obtaining a copy
44+
of this software and associated documentation files (the "Software"), to deal
45+
in the Software without restriction, including without limitation the rights
46+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
47+
copies of the Software, and to permit persons to whom the Software is
48+
furnished to do so, subject to the following conditions:
49+
50+
The above copyright notice and this permission notice shall be included in all
51+
copies or substantial portions of the Software.
52+
53+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
54+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
55+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
56+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
57+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
58+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
59+
SOFTWARE.
60+
61+
=======================================================================
62+
63+
Microsoft.OpenApi 3.3.0
64+
Microsoft.OpenApi.YamlReader 3.3.0
65+
Project: https://github.com/microsoft/OpenAPI.NET
66+
License: MIT
67+
68+
Copyright (c) Microsoft Corporation
69+
70+
Permission is hereby granted, free of charge, to any person obtaining a copy
71+
of this software and associated documentation files (the "Software"), to deal
72+
in the Software without restriction, including without limitation the rights
73+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
74+
copies of the Software, and to permit persons to whom the Software is
75+
furnished to do so, subject to the following conditions:
76+
77+
The above copyright notice and this permission notice shall be included in all
78+
copies or substantial portions of the Software.
79+
80+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
81+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
82+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
83+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
84+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
85+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
86+
SOFTWARE.
87+
88+
=======================================================================
89+
90+
Scriban 6.5.2
91+
Project: https://github.com/scriban/scriban
92+
License: BSD 2-Clause
93+
94+
Copyright (c) 2016-2026, Alexandre Mutel
95+
All rights reserved.
96+
97+
Redistribution and use in source and binary forms, with or without
98+
modification, are permitted provided that the following conditions are met:
99+
100+
1. Redistributions of source code must retain the above copyright notice,
101+
this list of conditions and the following disclaimer.
102+
103+
2. Redistributions in binary form must reproduce the above copyright notice,
104+
this list of conditions and the following disclaimer in the documentation
105+
and/or other materials provided with the distribution.
106+
107+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
108+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
109+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
110+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
111+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
112+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
113+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
114+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
115+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
116+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
117+
118+
=======================================================================
119+
120+
.NET Runtime (self-contained distribution)
121+
Project: https://github.com/dotnet/runtime
122+
License: MIT
123+
124+
Copyright (c) .NET Foundation and Contributors
125+
126+
Permission is hereby granted, free of charge, to any person obtaining a copy
127+
of this software and associated documentation files (the "Software"), to deal
128+
in the Software without restriction, including without limitation the rights
129+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
130+
copies of the Software, and to permit persons to whom the Software is
131+
furnished to do so, subject to the following conditions:
132+
133+
The above copyright notice and this permission notice shall be included in all
134+
copies or substantial portions of the Software.
135+
136+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
137+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
138+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
139+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
140+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
141+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
142+
SOFTWARE.

0 commit comments

Comments
 (0)