Skip to content

Commit

Permalink
Merge pull request #648 from tdewolff/dependabot/github_actions/actio…
Browse files Browse the repository at this point in the history
…ns/upload-artifact-4

Bump actions/upload-artifact from 3 to 4
  • Loading branch information
tdewolff committed Dec 18, 2023
2 parents 6826bcb + a228131 commit 794491d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cifuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
dry-run: false
language: go
- name: Upload Crash
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure() && steps.build.outcome == 'success'
with:
name: artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
cd bindings/js
npm test
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}.node
path: bindings/js/prebuilds/*/*.node
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
CIBW_BEFORE_ALL: .ci/ensure-go.sh; cd bindings/py; go get github.com/tdewolff/minify/v2@${{ github.ref_name }}; go build -buildmode=c-shared -o src/minify/_minify.so

- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels-linux-${{ matrix.go_target }}
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
CC=${{ matrix.xcompiler }} CGO_ENABLED=1 GOOS=windows GOARCH=${{ matrix.go_target }} go build -buildmode=c-shared -o _minify.so
- name: Upload go library
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: minify-windows-${{ matrix.go_target }}.so
path: bindings/py/_minify.so
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
CIBW_BUILD_VERBOSITY: 1

- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels-windows-${{ matrix.go_target }}
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
go build -buildmode=c-shared -o minify.so
- name: Upload go library
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: minify-darwin-${{ matrix.go_target }}.so
path: bindings/py/minify.so
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
#CIBW_BEFORE_ALL: cd bindings/py; go build -buildmode=c-shared -o src/minify/_minify.so

- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels-macos-${{ matrix.go_target }}
path: ./wheelhouse/*.whl
Expand All @@ -224,7 +224,7 @@ jobs:
cd bindings/py
python -m build --sdist
- name: Upload sdist
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
path: bindings/py/dist/*
Expand Down

0 comments on commit 794491d

Please sign in to comment.