Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump actions/upload-artifact from 4.4.3 to 4.5.0 #64

Closed
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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
DOCKER_TAG: ${{ matrix.container }}

- run: mv target/${{ matrix.target }}/release/supa-mdx-lint supa-mdx-lint-Linux-${{ matrix.arch }}
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 #v4.4.3
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b #v4.5.0
with:
name: artifact-bin-linux-${{ matrix.arch }}
path: supa-mdx-lint-Linux-${{ matrix.arch }}
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
- run: cargo build --target=${{ matrix.target }} --release --locked

- run: mv target/${{ matrix.target }}/release/supa-mdx-lint supa-mdx-lint-Darwin-${{ matrix.arch }}
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 #v4.4.3
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b #v4.5.0
with:
name: artifact-bin-macos-${{ matrix.arch }}
path: supa-mdx-lint-Darwin-${{ matrix.arch }}
Expand All @@ -89,7 +89,7 @@ jobs:
- name: Link universal binary
run: lipo -create -output supa-mdx-lint-Darwin-universal supa-mdx-lint-Darwin-x86_64 supa-mdx-lint-Darwin-arm64

- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 #v4.4.3
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b #v4.5.0
with:
name: artifact-bin-macos-universal
path: supa-mdx-lint-Darwin-universal
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:

- run: mv target/${{ matrix.target }}/release/supa-mdx-lint.exe supa-mdx-lint-Windows-${{ matrix.arch }}.exe

- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 #v4.4.3
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b #v4.5.0
with:
name: artifact-bin-windows-${{ matrix.arch }}
path: supa-mdx-lint-Windows-${{ matrix.arch }}.exe
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
- run: npm pack
working-directory: packages/supa-mdx-lint

- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 #v4.4.3
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b #v4.5.0
with:
name: artifact-pkg-node
path: "packages/supa-mdx-lint/*.tgz"
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
done

- name: Upload packaged npm binary distributions
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 #v4.4.3
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b #v4.5.0
with:
name: artifact-npm-binary-distributions
path: npm-binary-distributions/*/*.tgz
Expand Down
Loading