From a3576622142964e0dcffb87525fc8bf755dc6a73 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 May 2024 17:23:40 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 5949c1be..cd66ed30 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -140,13 +140,13 @@ jobs: - name: Upload Mac Installer if: matrix.runs-on == 'macos-latest' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: cadt-mac-installer path: ${{ github.workspace }}/build-scripts/macos/target/pkg-signed - name: Upload artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.artifact-name }} path: ${{ github.workspace }}/dist @@ -187,7 +187,7 @@ jobs: sudo cp ./node_modules/sqlite3/build/Release/node_sqlite3.node ./dist/ - name: Upload artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: cadt-linux-arm64 path: ${{ github.workspace }}/dist @@ -239,7 +239,7 @@ jobs: dpkg-deb --build --root-owner-group "deb/$CLI_DEB_BASE" - name: Upload deb - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.name }}-deb path: ${{ github.workspace }}/deb/*.deb