Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/CI_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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: |
Expand All @@ -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: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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: |
Expand All @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading