From bf13bdbb72073d7215a348e79f8c9719d6002f22 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 May 2023 20:55:14 +0000 Subject: [PATCH 01/27] :arrow_up: Bump pymdown-extensions from 9.9 to 10.0 in /docs/mkdocs Bumps [pymdown-extensions](https://github.com/facelessuser/pymdown-extensions) from 9.9 to 10.0. - [Release notes](https://github.com/facelessuser/pymdown-extensions/releases) - [Commits](https://github.com/facelessuser/pymdown-extensions/compare/9.9...10.0) --- updated-dependencies: - dependency-name: pymdown-extensions dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index 26e9fc683..d72f7e72b 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -32,7 +32,7 @@ packaging==22.0 plantuml==0.3.0 plantuml-markdown==3.7.3 Pygments==2.13.0 -pymdown-extensions==9.9 +pymdown-extensions==10.0 pyparsing==3.0.9 python-dateutil==2.8.2 pytz==2022.7 From 0e9371762e2a94553bbe87e0d384a9793db4d884 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 May 2023 06:09:33 +0000 Subject: [PATCH 02/27] :arrow_up: Bump gitpython from 3.1.29 to 3.1.30 in /docs/mkdocs Bumps [gitpython](https://github.com/gitpython-developers/GitPython) from 3.1.29 to 3.1.30. - [Release notes](https://github.com/gitpython-developers/GitPython/releases) - [Changelog](https://github.com/gitpython-developers/GitPython/blob/main/CHANGES) - [Commits](https://github.com/gitpython-developers/GitPython/compare/3.1.29...3.1.30) --- updated-dependencies: - dependency-name: gitpython dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index d72f7e72b..437fbf83d 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -6,7 +6,7 @@ csscompressor==0.9.5 future==0.18.3 ghp-import==2.1.0 gitdb==4.0.10 -GitPython==3.1.29 +GitPython==3.1.30 htmlmin==0.1.12 httplib2==0.21.0 idna==3.4 From ceab478ff326fd0bffc038e808d1198a7d58bc69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sarvex=20=E2=98=A0=20Jatasra?= Date: Fri, 19 May 2023 11:39:40 +0530 Subject: [PATCH 03/27] Create renovate.json --- renovate.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 000000000..930e76aed --- /dev/null +++ b/renovate.json @@ -0,0 +1,3 @@ +{ + "extends": ["github>sarvex/renovate-configs:cpp"] +} From 0deb90c02b778faadf1740e11c05245ee23338e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sarvex=20=E2=98=A0=20Jatasra?= Date: Fri, 19 May 2023 11:41:02 +0530 Subject: [PATCH 04/27] Create codeql.yml --- .github/workflows/codeql.yml | 76 ++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 000000000..4612f6193 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,76 @@ +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +# +# ******** NOTE ******** +# We have attempted to detect the languages in your repository. Please check +# the `language` matrix defined below to confirm you have the correct set of +# supported CodeQL languages. +# +name: "CodeQL" + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '40 20 * * 1' + +jobs: + analyze: + name: Analyze + runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'cpp', 'python' ] + # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] + # Use only 'java' to analyze code written in Java, Kotlin or both + # Use only 'javascript' to analyze code written in JavaScript, TypeScript or both + # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: ${{ matrix.language }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + + # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs + # queries: security-extended,security-and-quality + + + # Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java). + # If this step fails, then you should remove it and run the build manually (see below) + - name: Autobuild + uses: github/codeql-action/autobuild@v2 + + # â„šī¸ Command-line programs to run using the OS shell. + # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun + + # If the Autobuild fails above, remove it and uncomment the following three lines. + # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. + + # - run: | + # echo "Run, Build Application using script" + # ./location_of_script_within_repo/buildscript.sh + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 + with: + category: "/language:${{matrix.language}}" From dc1797e566aa802c0ecfaeee7c007362c77c2a24 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 May 2023 05:48:55 +0000 Subject: [PATCH 05/27] :arrow_up: Bump requests from 2.28.1 to 2.31.0 in /docs/mkdocs Bumps [requests](https://github.com/psf/requests) from 2.28.1 to 2.31.0. - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](https://github.com/psf/requests/compare/v2.28.1...v2.31.0) --- updated-dependencies: - dependency-name: requests dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index 437fbf83d..e4dfe2161 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -39,7 +39,7 @@ pytz==2022.7 PyYAML==6.0 pyyaml_env_tag==0.1 regex==2022.10.31 -requests==2.28.1 +requests==2.31.0 six==1.16.0 smmap==5.0.0 tornado==6.2 From 84c2895896e450d6a68415f5642932fdd8f11fa0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 May 2023 18:53:47 +0000 Subject: [PATCH 06/27] :arrow_up: Bump tornado from 6.2 to 6.3.2 in /docs/mkdocs Bumps [tornado](https://github.com/tornadoweb/tornado) from 6.2 to 6.3.2. - [Changelog](https://github.com/tornadoweb/tornado/blob/master/docs/releases.rst) - [Commits](https://github.com/tornadoweb/tornado/compare/v6.2.0...v6.3.2) --- updated-dependencies: - dependency-name: tornado dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index e4dfe2161..517fbcfc6 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -42,7 +42,7 @@ regex==2022.10.31 requests==2.31.0 six==1.16.0 smmap==5.0.0 -tornado==6.2 +tornado==6.3.2 tqdm==4.64.1 urllib3==1.26.13 watchdog==2.2.0 From 7a3cf57fc4d84185be31f1a466daedefddce161f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Jul 2023 14:48:25 +0000 Subject: [PATCH 07/27] :arrow_up: Bump pygments from 2.13.0 to 2.15.0 in /docs/mkdocs Bumps [pygments](https://github.com/pygments/pygments) from 2.13.0 to 2.15.0. - [Release notes](https://github.com/pygments/pygments/releases) - [Changelog](https://github.com/pygments/pygments/blob/master/CHANGES) - [Commits](https://github.com/pygments/pygments/compare/2.13.0...2.15.0) --- updated-dependencies: - dependency-name: pygments dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index 517fbcfc6..ac13adb7b 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -31,7 +31,7 @@ nltk==3.8 packaging==22.0 plantuml==0.3.0 plantuml-markdown==3.7.3 -Pygments==2.13.0 +Pygments==2.15.0 pymdown-extensions==10.0 pyparsing==3.0.9 python-dateutil==2.8.2 From d588e54f0256d42f154ab0ce29802e1cfb271e09 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Jul 2023 21:38:58 +0000 Subject: [PATCH 08/27] :arrow_up: Bump certifi from 2022.12.7 to 2023.7.22 in /docs/mkdocs Bumps [certifi](https://github.com/certifi/python-certifi) from 2022.12.7 to 2023.7.22. - [Commits](https://github.com/certifi/python-certifi/compare/2022.12.07...2023.07.22) --- updated-dependencies: - dependency-name: certifi dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index 517fbcfc6..939bb35a8 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -1,5 +1,5 @@ Babel==2.11.0 -certifi==2022.12.7 +certifi==2023.7.22 charset-normalizer==2.1.1 click==8.1.3 csscompressor==0.9.5 From 1c5414a87454d3adbb35686f9865ccb9d3f1e211 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 11 Aug 2023 20:30:02 +0000 Subject: [PATCH 09/27] :arrow_up: Bump gitpython from 3.1.30 to 3.1.32 in /docs/mkdocs Bumps [gitpython](https://github.com/gitpython-developers/GitPython) from 3.1.30 to 3.1.32. - [Release notes](https://github.com/gitpython-developers/GitPython/releases) - [Changelog](https://github.com/gitpython-developers/GitPython/blob/main/CHANGES) - [Commits](https://github.com/gitpython-developers/GitPython/compare/3.1.30...3.1.32) --- updated-dependencies: - dependency-name: gitpython dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index 517fbcfc6..f40d70296 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -6,7 +6,7 @@ csscompressor==0.9.5 future==0.18.3 ghp-import==2.1.0 gitdb==4.0.10 -GitPython==3.1.30 +GitPython==3.1.32 htmlmin==0.1.12 httplib2==0.21.0 idna==3.4 From 3d654aa87935abb5e5bce7259a4afa71a8d1acb9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Aug 2023 23:34:45 +0000 Subject: [PATCH 10/27] :arrow_up: Bump tornado from 6.3.2 to 6.3.3 in /docs/mkdocs Bumps [tornado](https://github.com/tornadoweb/tornado) from 6.3.2 to 6.3.3. - [Changelog](https://github.com/tornadoweb/tornado/blob/master/docs/releases.rst) - [Commits](https://github.com/tornadoweb/tornado/compare/v6.3.2...v6.3.3) --- updated-dependencies: - dependency-name: tornado dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index f40d70296..7f0877f71 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -42,7 +42,7 @@ regex==2022.10.31 requests==2.31.0 six==1.16.0 smmap==5.0.0 -tornado==6.3.2 +tornado==6.3.3 tqdm==4.64.1 urllib3==1.26.13 watchdog==2.2.0 From 12cbe05a6e8df7f47020098b556583143d98f783 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Sep 2023 18:42:24 +0000 Subject: [PATCH 11/27] Bump gitpython from 3.1.32 to 3.1.34 in /docs/mkdocs Bumps [gitpython](https://github.com/gitpython-developers/GitPython) from 3.1.32 to 3.1.34. - [Release notes](https://github.com/gitpython-developers/GitPython/releases) - [Changelog](https://github.com/gitpython-developers/GitPython/blob/main/CHANGES) - [Commits](https://github.com/gitpython-developers/GitPython/compare/3.1.32...3.1.34) --- updated-dependencies: - dependency-name: gitpython dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index 424e5c297..1a937a430 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -6,7 +6,7 @@ csscompressor==0.9.5 future==0.18.3 ghp-import==2.1.0 gitdb==4.0.10 -GitPython==3.1.32 +GitPython==3.1.34 htmlmin==0.1.12 httplib2==0.21.0 idna==3.4 From 1f1dae002d37e45703fd984e91ce64aaf9421cf3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 10 Sep 2023 14:17:52 +0000 Subject: [PATCH 12/27] Bump gitpython from 3.1.34 to 3.1.35 in /docs/mkdocs Bumps [gitpython](https://github.com/gitpython-developers/GitPython) from 3.1.34 to 3.1.35. - [Release notes](https://github.com/gitpython-developers/GitPython/releases) - [Changelog](https://github.com/gitpython-developers/GitPython/blob/main/CHANGES) - [Commits](https://github.com/gitpython-developers/GitPython/compare/3.1.34...3.1.35) --- updated-dependencies: - dependency-name: gitpython dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index 1a937a430..4e8417155 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -6,7 +6,7 @@ csscompressor==0.9.5 future==0.18.3 ghp-import==2.1.0 gitdb==4.0.10 -GitPython==3.1.34 +GitPython==3.1.35 htmlmin==0.1.12 httplib2==0.21.0 idna==3.4 From bc1ad985f47e4862bd38bd63d86ca489e2437e03 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 02:40:39 +0000 Subject: [PATCH 13/27] Bump urllib3 from 1.26.13 to 1.26.17 in /docs/mkdocs Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.26.13 to 1.26.17. - [Release notes](https://github.com/urllib3/urllib3/releases) - [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst) - [Commits](https://github.com/urllib3/urllib3/compare/1.26.13...1.26.17) --- updated-dependencies: - dependency-name: urllib3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index 4e8417155..459b35ae7 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -44,6 +44,6 @@ six==1.16.0 smmap==5.0.0 tornado==6.3.3 tqdm==4.64.1 -urllib3==1.26.13 +urllib3==1.26.17 watchdog==2.2.0 zipp==3.11.0 From 8f9b9a8a589130d3b4e3c13a21d8987ecd4e5810 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 20:56:31 +0000 Subject: [PATCH 14/27] Bump gitpython from 3.1.35 to 3.1.37 in /docs/mkdocs Bumps [gitpython](https://github.com/gitpython-developers/GitPython) from 3.1.35 to 3.1.37. - [Release notes](https://github.com/gitpython-developers/GitPython/releases) - [Changelog](https://github.com/gitpython-developers/GitPython/blob/main/CHANGES) - [Commits](https://github.com/gitpython-developers/GitPython/compare/3.1.35...3.1.37) --- updated-dependencies: - dependency-name: gitpython dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index 459b35ae7..b9caa2e7b 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -6,7 +6,7 @@ csscompressor==0.9.5 future==0.18.3 ghp-import==2.1.0 gitdb==4.0.10 -GitPython==3.1.35 +GitPython==3.1.37 htmlmin==0.1.12 httplib2==0.21.0 idna==3.4 From d6a84e68c9bc388529c0aa69f0358c524c912660 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 01:27:14 +0000 Subject: [PATCH 15/27] Bump urllib3 from 1.26.17 to 1.26.18 in /docs/mkdocs Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.26.17 to 1.26.18. - [Release notes](https://github.com/urllib3/urllib3/releases) - [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst) - [Commits](https://github.com/urllib3/urllib3/compare/1.26.17...1.26.18) --- updated-dependencies: - dependency-name: urllib3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index b9caa2e7b..940da707e 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -44,6 +44,6 @@ six==1.16.0 smmap==5.0.0 tornado==6.3.3 tqdm==4.64.1 -urllib3==1.26.17 +urllib3==1.26.18 watchdog==2.2.0 zipp==3.11.0 From f83849ea3312edf1c9a615c5303cb33b2ca09bab Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 29 Oct 2023 05:42:24 +0000 Subject: [PATCH 16/27] Update dependency GitPython to v3.1.40 --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index 940da707e..932c0f9f6 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -6,7 +6,7 @@ csscompressor==0.9.5 future==0.18.3 ghp-import==2.1.0 gitdb==4.0.10 -GitPython==3.1.37 +GitPython==3.1.40 htmlmin==0.1.12 httplib2==0.21.0 idna==3.4 From fbca2cfd71ef896f4f88f3615399e660d604762f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 29 Oct 2023 07:41:38 +0000 Subject: [PATCH 17/27] Update actions/github-script action to v6.4.1 --- .github/workflows/comment_check_amalgamation.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/comment_check_amalgamation.yml b/.github/workflows/comment_check_amalgamation.yml index 2ab5ebb97..aed4e82d1 100644 --- a/.github/workflows/comment_check_amalgamation.yml +++ b/.github/workflows/comment_check_amalgamation.yml @@ -18,7 +18,7 @@ jobs: pull-requests: write steps: - name: 'Download artifact' - uses: actions/github-script@98814c53be79b1d30f795b907e553d8679345975 # v6.4.0 + uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1 with: script: | var artifacts = await github.rest.actions.listWorkflowRunArtifacts({ @@ -40,7 +40,7 @@ jobs: - run: unzip pr.zip - name: 'Comment on PR' - uses: actions/github-script@98814c53be79b1d30f795b907e553d8679345975 # v6.4.0 + uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | From e402c98c27e0c6c874236c2511f9339b6457aba1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 29 Oct 2023 07:41:45 +0000 Subject: [PATCH 18/27] Update dependency PyYAML to v6.0.1 --- docs/mkdocs/requirements.txt | 2 +- tools/serve_header/requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index 932c0f9f6..fe3beb5a1 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -36,7 +36,7 @@ pymdown-extensions==10.0 pyparsing==3.0.9 python-dateutil==2.8.2 pytz==2022.7 -PyYAML==6.0 +PyYAML==6.0.1 pyyaml_env_tag==0.1 regex==2022.10.31 requests==2.31.0 diff --git a/tools/serve_header/requirements.txt b/tools/serve_header/requirements.txt index d32eed3bd..c5082ac6d 100644 --- a/tools/serve_header/requirements.txt +++ b/tools/serve_header/requirements.txt @@ -1,2 +1,2 @@ -PyYAML==6.0 +PyYAML==6.0.1 watchdog==2.1.7 From a3af52bee9c1f9931f72900e6a229315d0a54cca Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 29 Oct 2023 07:42:17 +0000 Subject: [PATCH 19/27] Update dependency MarkupSafe to v2.1.3 --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index 932c0f9f6..0bc240652 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -18,7 +18,7 @@ livereload==2.6.3 lunr==0.6.2 Markdown==3.3.7 # we cannot install a more recent version yet as mkdocs 1.4.2 depends on markdown<3.4 markdown-include==0.8.0 -MarkupSafe==2.1.1 +MarkupSafe==2.1.3 mergedeep==1.3.4 mkdocs==1.4.2 mkdocs-git-revision-date-localized-plugin==1.1.0 From b563f99b5a39b9b311365878793dad1d7bd40e38 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 29 Oct 2023 12:23:29 +0000 Subject: [PATCH 20/27] Update dependency mkdocs-redirects to v1.2.1 --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index b5ef7f8c8..5b67a6d62 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -25,7 +25,7 @@ mkdocs-git-revision-date-localized-plugin==1.1.0 mkdocs-material==8.5.11 mkdocs-material-extensions==1.1.1 mkdocs-minify-plugin==0.6.2 -mkdocs-redirects==1.2.0 +mkdocs-redirects==1.2.1 mkdocs-simple-hooks==0.1.5 nltk==3.8 packaging==22.0 From e9c07cec9b9b84fad46eeb1b5e3ee426ed8e6c86 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 29 Oct 2023 13:48:07 +0000 Subject: [PATCH 21/27] Update dependency gitdb to v4.0.11 --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index 5b67a6d62..07837732c 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -5,7 +5,7 @@ click==8.1.3 csscompressor==0.9.5 future==0.18.3 ghp-import==2.1.0 -gitdb==4.0.10 +gitdb==4.0.11 GitPython==3.1.40 htmlmin==0.1.12 httplib2==0.21.0 From a36b7bfb3844c34a0b1ca8cb840ff57906a3ce2b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 29 Oct 2023 13:48:19 +0000 Subject: [PATCH 22/27] Update dependency pytz to v2022.7.1 --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index 5b67a6d62..6dfab6e3e 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -35,7 +35,7 @@ Pygments==2.15.0 pymdown-extensions==10.0 pyparsing==3.0.9 python-dateutil==2.8.2 -pytz==2022.7 +pytz==2022.7.1 PyYAML==6.0.1 pyyaml_env_tag==0.1 regex==2022.10.31 From 6634bb8114e1c4cf3606d7a320c32e1e3760e8b6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 29 Oct 2023 13:59:25 +0000 Subject: [PATCH 23/27] Update dependency nltk to v3.8.1 --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index 07837732c..287a5444c 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -27,7 +27,7 @@ mkdocs-material-extensions==1.1.1 mkdocs-minify-plugin==0.6.2 mkdocs-redirects==1.2.1 mkdocs-simple-hooks==0.1.5 -nltk==3.8 +nltk==3.8.1 packaging==22.0 plantuml==0.3.0 plantuml-markdown==3.7.3 From f2a2a140b113ddae43d4e13e51d079c4f1b25d93 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 29 Oct 2023 13:59:51 +0000 Subject: [PATCH 24/27] Update dependency markdown-include to v0.8.1 --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index c827a25e8..cd474d1fc 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -17,7 +17,7 @@ jsmin==3.0.1 livereload==2.6.3 lunr==0.6.2 Markdown==3.3.7 # we cannot install a more recent version yet as mkdocs 1.4.2 depends on markdown<3.4 -markdown-include==0.8.0 +markdown-include==0.8.1 MarkupSafe==2.1.3 mergedeep==1.3.4 mkdocs==1.4.2 From 9f2d53ef95b156c96f3ae6954c4a08bc1ad52c81 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 29 Oct 2023 14:00:10 +0000 Subject: [PATCH 25/27] Update dependency smmap to v5.0.1 --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index cd474d1fc..df03b04d4 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -41,7 +41,7 @@ pyyaml_env_tag==0.1 regex==2022.10.31 requests==2.31.0 six==1.16.0 -smmap==5.0.0 +smmap==5.0.1 tornado==6.3.3 tqdm==4.64.1 urllib3==1.26.18 From ddda0dbd5fe312984b99d17cdab72c3ddfc0d4b2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 29 Oct 2023 14:00:14 +0000 Subject: [PATCH 26/27] Update dependency Babel to v2.13.1 --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index cd474d1fc..e0164be23 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -1,4 +1,4 @@ -Babel==2.11.0 +Babel==2.13.1 certifi==2023.7.22 charset-normalizer==2.1.1 click==8.1.3 From 7b311cfb3e5abe8d58ff09466e7a56ca92ab7e51 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 29 Oct 2023 14:00:55 +0000 Subject: [PATCH 27/27] Update dependency click to v8.1.7 --- docs/mkdocs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mkdocs/requirements.txt b/docs/mkdocs/requirements.txt index 5e80167b5..86b6c9069 100644 --- a/docs/mkdocs/requirements.txt +++ b/docs/mkdocs/requirements.txt @@ -1,7 +1,7 @@ Babel==2.13.1 certifi==2023.7.22 charset-normalizer==2.1.1 -click==8.1.3 +click==8.1.7 csscompressor==0.9.5 future==0.18.3 ghp-import==2.1.0