diff --git a/.github/workflows/CI_build.yml b/.github/workflows/CI_build.yml index 9554021d5..69904783b 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@v5 + uses: actions/upload-artifact@v6 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@v5 + uses: actions/upload-artifact@v6 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@v5 + uses: actions/upload-artifact@v6 with: name: plugin_dll_and_list_arm64 path: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ee0a1dfb6..075fc0ae8 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@v5 + uses: actions/upload-artifact@v6 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@v5 + uses: actions/upload-artifact@v6 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@v5 + uses: actions/upload-artifact@v6 with: name: plugin_dll_and_list_arm64 path: | diff --git a/requirements.txt b/requirements.txt index f3c6ea5ab..df380142f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,4 +6,4 @@ jsonschema==4.25.1 pyrsistent==0.20.0 pywin32==311 requests==2.32.5 -urllib3==2.6.0 +urllib3==2.6.2