From 9b74cc4927a6328bc6719eee88b976e9ecf56470 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 19:16:01 +0000 Subject: [PATCH] Bump actions/download-artifact from 3 to 4 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/nodejs.yml | 2 +- .github/workflows/python.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index e88ce60e8f..561da074ab 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -100,7 +100,7 @@ jobs: - name: Install node-gyp and prebuildify run: npm install --location=global node-gyp node-gyp-build node-api-headers prebuildify - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: path: bindings/js/prebuilds diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 795b8c4346..c2655f1879 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -100,7 +100,7 @@ jobs: run: | cd bindings/py go get github.com/tdewolff/minify/v2@${{ github.ref_name }} - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: minify-windows-${{ matrix.go_target }}.so path: bindings/py/src/minify @@ -176,7 +176,7 @@ jobs: run: | cd bindings/py go get github.com/tdewolff/minify/v2@${{ github.ref_name }} - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: minify-darwin-${{ matrix.go_target }}.so path: bindings/py/src/minify/_minify.so @@ -237,7 +237,7 @@ jobs: needs: [linux, windows, sdist] steps: - name: Download artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: bindings/py/artifacts - name: Bundle release artifacts