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
16 changes: 8 additions & 8 deletions .github/workflows/build-and-deploy-node-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ jobs:
working-directory: ${{ env.SUBDIRECTORY }}
run: yarn install
- name: Download artifacts
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v8.0.1
with:
name: bindings-x86_64-unknown-linux-gnu
path: ${{ env.SUBDIRECTORY }}
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
yarn config set supportedArchitectures.libc "musl"
yarn install
- name: Download artifacts
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v8.0.1
with:
name: bindings-x86_64-unknown-linux-musl
path: ${{ env.SUBDIRECTORY }}
Expand Down Expand Up @@ -260,7 +260,7 @@ jobs:
docker run --rm --privileged multiarch/qemu-user-static:register
--reset
- name: Download artifacts
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v8.0.1
with:
name: bindings-aarch64-unknown-linux-gnu
path: ${{ env.SUBDIRECTORY }}
Expand Down Expand Up @@ -298,7 +298,7 @@ jobs:
# - uses: actions/checkout@v4
# - run: docker run --rm --privileged multiarch/qemu-user-static:register --reset
# - name: Download artifacts
# uses: actions/download-artifact@v4.1.8
# uses: actions/download-artifact@v8.0.1
# with:
# name: bindings-aarch64-unknown-linux-musl
# path: ${{ env.SUBDIRECTORY }}
Expand Down Expand Up @@ -342,7 +342,7 @@ jobs:
docker run --rm --privileged multiarch/qemu-user-static:register
--reset
- name: Download artifacts
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v8.0.1
with:
name: bindings-armv7-unknown-linux-gnueabihf
path: ${{ env.SUBDIRECTORY }}
Expand Down Expand Up @@ -387,12 +387,12 @@ jobs:
- name: Install dependencies
run: yarn install
- name: Download macOS x64 artifact
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v8.0.1
with:
name: bindings-x86_64-apple-darwin
path: ${{ env.SUBDIRECTORY }}/artifacts
- name: Download macOS arm64 artifact
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v8.0.1
with:
name: bindings-aarch64-apple-darwin
path: ${{ env.SUBDIRECTORY }}/artifacts
Expand Down Expand Up @@ -441,7 +441,7 @@ jobs:
working-directory: ${{ env.SUBDIRECTORY }}
run: yarn install
- name: Download all artifacts
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v8.0.1
with:
path: ${{ env.SUBDIRECTORY }}/artifacts
- name: Move artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-deploy-python-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
fi
- name: Guarantee wheels dir exists
run: mkdir python-attestation-bindings/wheels
- uses: actions/download-artifact@v4.1.8
- uses: actions/download-artifact@v8.0.1
with:
path: python-attestation-bindings/wheels
pattern: wheels-*
Expand Down
Loading