Skip to content

Commit 1517bdd

Browse files
committed
Update third praty
1 parent 76b6426 commit 1517bdd

133 files changed

Lines changed: 19226 additions & 983 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

third_party/Catch2/fuzzing/fuzz_TestSpecParser.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
#include <catch2/internal/catch_test_spec_parser.hpp>
1111
#include <catch2/internal/catch_tag_alias_registry.hpp>
12+
#include <cstdint>
1213

1314
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
1415

third_party/Catch2/fuzzing/fuzz_textflow.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
#include <string>
1515
#include <string_view>
16+
#include <cstdint>
1617

1718

1819
template<class Callback>

third_party/Imath/.github/workflows/analysis_workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Setup container
3939
run: sudo rm -rf /usr/local/lib64/cmake/glew
4040
- name: Checkout
41-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
41+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4242
with:
4343
fetch-depth: 50
4444
- name: Create build directories
@@ -102,7 +102,7 @@ jobs:
102102
- name: Setup container
103103
run: sudo rm -rf /usr/local/lib64/cmake/glew
104104
- name: Checkout
105-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
105+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
106106
with:
107107
fetch-depth: 50
108108
- name: Create build directories

third_party/Imath/.github/workflows/ci_steps.yml

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

6868
steps:
6969
- name: Checkout Repository
70-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
70+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
7171

7272
- name: Set Up Directories & Environment
7373
run: |
@@ -473,7 +473,7 @@ jobs:
473473

474474
- name: Upload install_manifest.txt
475475
# Upload the manifest to make it possible to download for inspection and debugging
476-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
476+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
477477
with:
478478
name: ${{ env.INSTALL_MANIFEST }}
479479
path: ${{ env.INSTALL_MANIFEST_PATH }}

third_party/Imath/.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ jobs:
7070
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
7171
steps:
7272
- name: Checkout repository
73-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
73+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
7474

7575
# Initializes the CodeQL tools for scanning.
7676
- name: Initialize CodeQL
77-
uses: github/codeql-action/init@v4.31.8
77+
uses: github/codeql-action/init@v4.32.5
7878
with:
7979
languages: ${{ matrix.language }}
8080
build-mode: ${{ matrix.build-mode }}
@@ -101,6 +101,6 @@ jobs:
101101
exit 1
102102
103103
- name: Perform CodeQL Analysis
104-
uses: github/codeql-action/analyze@v4.31.8
104+
uses: github/codeql-action/analyze@v4.32.5
105105
with:
106106
category: "/language:${{matrix.language}}"

third_party/Imath/.github/workflows/release-sign.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
shell: bash
4949

5050
- name: Checkout
51-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
51+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5252

5353
- name: Create archive
5454
run: git archive --format=tar.gz -o ${IMATH_TARBALL} --prefix ${IMATH_PREFIX} ${TAG}

third_party/Imath/.github/workflows/scorecard.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: "Checkout code"
28-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
28+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2929
with:
3030
persist-credentials: false
3131

@@ -43,14 +43,14 @@ jobs:
4343

4444
# Upload the results as artifacts (optional)
4545
- name: "Upload artifact"
46-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
46+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
4747
with:
4848
name: SARIF file
4949
path: results.sarif
5050
retention-days: 5
5151

5252
# Upload the results to GitHub's code scanning dashboard.
5353
- name: "Upload to code-scanning"
54-
uses: github/codeql-action/upload-sarif@4b675e451b3779918647db783e324bd9fd7f3932 # v3.30.7
54+
uses: github/codeql-action/upload-sarif@b895512248b1b5b0089ac3c33ecf123c2cd6f373 # v3.30.7
5555
with:
5656
sarif_file: results.sarif

third_party/Imath/.github/workflows/website_workflow.yml

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

4040
steps:
4141
- name: Checkout
42-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
42+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4343
- name: Create build directory
4444
run: mkdir _build
4545
- name: Install doxygen

third_party/abseil-cpp/CMake/AbseilDll.cmake

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ set(ABSL_INTERNAL_DLL_FILES
367367
"strings/internal/string_constant.h"
368368
"strings/internal/stringify_sink.cc"
369369
"strings/internal/stringify_sink.h"
370+
"strings/internal/stringify_stream.h"
370371
"strings/internal/utf8.cc"
371372
"strings/internal/utf8.h"
372373
"strings/match.cc"
@@ -450,10 +451,13 @@ set(ABSL_INTERNAL_DLL_FILES
450451
"time/time.cc"
451452
"time/time.h"
452453
"types/any.h"
454+
"types/any_span.h"
453455
"types/compare.h"
456+
"types/internal/any_span.h"
454457
"types/internal/span.h"
455458
"types/optional.h"
456459
"types/optional_ref.h"
460+
"types/source_location.h"
457461
"types/span.h"
458462
"types/variant.h"
459463
"utility/utility.h"

third_party/abseil-cpp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ if(ABSL_ENABLE_INSTALL)
227227

228228
# Handle features that require at least C++20.
229229
if (ABSL_INTERNAL_AT_LEAST_CXX20)
230-
foreach(FEATURE "ORDERING")
230+
foreach(FEATURE "ORDERING" "SOURCE_LOCATION")
231231
string(REPLACE
232232
"#define ABSL_OPTION_USE_STD_${FEATURE} 2"
233233
"#define ABSL_OPTION_USE_STD_${FEATURE} 1"

0 commit comments

Comments
 (0)