Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/_reusable_build_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ jobs:
run: make package

- name: Store package as action artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ steps.package.outputs.path }}
path: ./build/${{ steps.package.outputs.path }}
Expand Down Expand Up @@ -367,7 +367,7 @@ jobs:
folder: ./msi/wix/bin/${{ inputs.package_arch }}/en-US

- name: Store MSI as action artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ steps.build.outputs.package_filename }}
path: ${{ steps.build.outputs.package_path }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,21 +158,21 @@ jobs:
echo "${OTC_SUMO_VERSION}" > otc-sumo-version.txt

- name: Store otc-version.txt as action artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: otc-version.txt
path: ./otc-version.txt
if-no-files-found: error

- name: Store otc-build-number.txt as action artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: otc-build-number.txt
path: ./otc-build-number.txt
if-no-files-found: error

- name: Store otc-sumo-version.txt as action artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: otc-sumo-version.txt
path: ./otc-sumo-version.txt
Expand All @@ -194,14 +194,14 @@ jobs:
- uses: actions/checkout@v4

- name: Store Linux install script as action artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: install.sh
path: ./install-script/install.sh
if-no-files-found: error

- name: Store Windows install script as action artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: install.ps1
path: ./install-script/install.ps1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,14 @@ jobs:
ref: ${{ needs.get-version.outputs.git-sha }}

- name: Store Linux install script as action artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: install.sh
path: ./install-script/install.sh
if-no-files-found: error

- name: Store Windows install script as action artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: install.ps1
path: ./install-script/install.ps1
Expand Down
Loading