Skip to content
New issue

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

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

Already on GitHub? # to your account

Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows #1

Open
wants to merge 1 commit into
base: master
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
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
choco install ninja -y

- name: Fetch BoringSSL source
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4.1.7
with:
name: boringssl-source
path: ${{ runner.temp }}/boringssl
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:
echo "BORINGSSL_HOME=${{ runner.temp }}/boringssl" >> $GITHUB_ENV

- name: Fetch BoringSSL source
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4.1.7
with:
name: boringssl-source
path: ${{ runner.temp }}/boringssl
Expand All @@ -235,19 +235,19 @@ jobs:
mkdir -p "${{ runner.temp }}/boringssl/include"

- name: Download Maven repository for Linux
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4.1.7
with:
name: m2repo-Linux
path: ${{ runner.temp }}/m2

- name: Download Maven repository for MacOS
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4.1.7
with:
name: m2repo-macOS
path: ${{ runner.temp }}/m2

- name: Download Maven repository for Windows
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4.1.7
with:
name: m2repo-Windows
path: ${{ runner.temp }}/m2
Expand Down Expand Up @@ -293,13 +293,13 @@ jobs:
java-version: ${{ matrix.java }}

- name: Download UberJAR
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: m2repo-uber
path: m2

- name: Download Test JAR with Dependencies
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: testjar
path: testjar
Expand Down
Loading