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
12 changes: 6 additions & 6 deletions .github/workflows/CI_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ jobs:

- name: Archive artifacts for x64 CPack
if: matrix.build_platform == 'x64' && matrix.build_configuration == 'Release'
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: plugin_dll_x64
path: _build\NppFTP-0.30.22-win64.zip

- name: Archive artifacts for Win32 CPack
if: matrix.build_platform == 'Win32' && matrix.build_configuration == 'Release'
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: plugin_dll_x86
path: _build\NppFTP-0.30.22-win32.zip
Expand All @@ -49,7 +49,7 @@ jobs:

- name: Archive artifacts for ARM64 CPack
if: matrix.build_platform == 'ARM64' && matrix.build_configuration == 'Release'
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: NppFTP-arm64.zip
path: NppFTP-arm64.zip
Expand Down Expand Up @@ -82,14 +82,14 @@ jobs:

- name: Archive artifacts for x86
if: matrix.build_platform == '32'
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: NppFTP-x86.zip
path: NppFTP-x86.zip

- name: Archive artifacts for x64
if: matrix.build_platform == '64'
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: NppFTP-x64.zip
path: NppFTP-x64.zip
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:

- name: Archive artifacts for x64 CPack
if: matrix.build_configuration == 'Release'
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: plugin_dll_x64_linux
path: _build/NppFTP-0.30.22-win64.zip
2 changes: 1 addition & 1 deletion .github/workflows/spdx_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# curl -Lo $RUNNER_TEMP/sbom-tool https://github.com/microsoft/sbom-tool/releases/latest/download/sbom-tool-linux-x64
# chmod +x $RUNNER_TEMP/sbom-tool
# $RUNNER_TEMP/sbom-tool generate -b . -bc . -pn ${{ github.repository }} -pv 1.0.0 -ps OwnerName -nsb https://sbom.mycompany.com -V Verbose
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: sbom
path: ./project.spdx.json
Expand Down