From 271ad4e0f4fee68344db0ea96fa5a0e70afdb939 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Mar 2026 00:30:11 +0100 Subject: [PATCH 1/2] Bump certifi from 2026.1.4 to 2026.2.25 (#1044) Bumps [certifi](https://github.com/certifi/python-certifi) from 2026.1.4 to 2026.2.25. - [Commits](https://github.com/certifi/python-certifi/compare/2026.01.04...2026.02.25) --- updated-dependencies: - dependency-name: certifi dependency-version: 2026.2.25 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index e9d776cdc..6d852369c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ attrs==25.4.0 -certifi==2026.1.4 +certifi==2026.2.25 charset-normalizer==3.4.4 idna==3.11 jsonschema==4.25.1 From 553edf1ee5525e6727201418381caf3e3c271d49 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Mar 2026 00:36:54 +0100 Subject: [PATCH 2/2] Bump actions/upload-artifact from 6 to 7 (#1045) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/CI_build.yml | 6 +++--- .github/workflows/release.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/CI_build.yml b/.github/workflows/CI_build.yml index 69904783b..f276e072f 100644 --- a/.github/workflows/CI_build.yml +++ b/.github/workflows/CI_build.yml @@ -42,7 +42,7 @@ jobs: - name: Archive artifacts for x64 if: matrix.build_platform == 'x64' && matrix.build_configuration == 'Release' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: plugin_dll_and_list_x64 path: | @@ -51,7 +51,7 @@ jobs: - name: Archive artifacts for Win32 if: matrix.build_platform == 'Win32' && matrix.build_configuration == 'Release' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: plugin_dll_and_list_x86 path: | @@ -60,7 +60,7 @@ jobs: - name: Archive artifacts for ARM64 if: matrix.build_platform == 'ARM64' && matrix.build_configuration == 'Release' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: plugin_dll_and_list_arm64 path: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 075fc0ae8..8f01d08ea 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -67,7 +67,7 @@ jobs: - name: Archive artifacts for x64 if: matrix.build_platform == 'x64' && matrix.build_configuration == 'Release' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: plugin_dll_and_list_x64 path: | @@ -76,7 +76,7 @@ jobs: - name: Archive artifacts for Win32 if: matrix.build_platform == 'Win32' && matrix.build_configuration == 'Release' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: plugin_dll_and_list_x86 path: | @@ -85,7 +85,7 @@ jobs: - name: Archive artifacts for ARM64 if: matrix.build_platform == 'ARM64' && matrix.build_configuration == 'Release' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: plugin_dll_and_list_arm64 path: |