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

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows in the github_actions group across 1 directory #344

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 @@ -220,7 +220,7 @@ jobs:
version: 9

- name: Fetch library artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: library-linux-x86_64

Expand Down Expand Up @@ -298,7 +298,7 @@ jobs:
pip install setuptools wheel twine auditwheel

- name: Fetch library artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: library-${{ matrix.architecture }}
path: wrappers/python/anoncreds/
Expand Down Expand Up @@ -385,7 +385,7 @@ jobs:
github.event.inputs.publish-binaries == 'true'))
steps:
- name: Fetch libraries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
- run: |
sudo mkdir ./libs
sudo mv aarch64-linux-android ./libs/arm64-v8a
Expand Down Expand Up @@ -447,7 +447,7 @@ jobs:
uses: actions/checkout@v3

- name: Fetch static libraries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
- run: >
./build-xcframework.sh aarch64-apple-ios \
aarch64-apple-ios-sim \
Expand Down Expand Up @@ -482,13 +482,13 @@ jobs:

steps:
- name: Fetch Android libraries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: android-libraries
path: mobile/android/

- name: Fetch iOS Framework
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: anoncreds.xcframework
path: mobile/ios/
Expand Down
Loading