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 2.0.8 to 4.1.7 in /.github/workflows in the github_actions group across 1 directory #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
4 changes: 2 additions & 2 deletions .github/workflows/cpp-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ jobs:
path: sdk-src

- name: download artifact
uses: actions/download-artifact@v2.0.8
uses: actions/download-artifact@v4.1.7
with:
# download-artifact doesn't support wildcards, but by default
# will download all artifacts. Sadly this is what we must do.
Expand Down Expand Up @@ -600,7 +600,7 @@ jobs:
path: sdk-src

- name: download artifact
uses: actions/download-artifact@v2.0.8
uses: actions/download-artifact@v4.1.7
with:
# download-artifact doesn't support wildcards, but by default
# will download all artifacts. Sadly this is what we must do.
Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ jobs:
python scripts/gha/gcs_uploader.py --testapp_dir ta --key_file scripts/gha-encrypted/gcs_key_file.json
- name: Download log artifacts
if: ${{ needs.check_trigger.outputs.should_update_pr && failure() && !cancelled() }}
uses: actions/download-artifact@v2.0.8
uses: actions/download-artifact@v4.1.7
with:
path: test_results
name: log-artifact
Expand Down Expand Up @@ -450,7 +450,7 @@ jobs:
retention-days: ${{ env.artifactRetentionDays }}
- name: Download log artifacts
if: ${{ needs.check_trigger.outputs.should_update_pr && failure() && !cancelled() }}
uses: actions/download-artifact@v2.0.8
uses: actions/download-artifact@v4.1.7
with:
path: test_results
name: log-artifact
Expand Down Expand Up @@ -543,7 +543,7 @@ jobs:
retention-days: ${{ env.artifactRetentionDays }}
- name: Download log artifacts
if: ${{ needs.check_trigger.outputs.should_update_pr && failure() && !cancelled() }}
uses: actions/download-artifact@v2.0.8
uses: actions/download-artifact@v4.1.7
with:
path: test_results
name: log-artifact
Expand Down Expand Up @@ -635,7 +635,7 @@ jobs:
retention-days: ${{ env.artifactRetentionDays }}
- name: Download log artifacts
if: ${{ needs.check_trigger.outputs.should_update_pr && failure() && !cancelled() }}
uses: actions/download-artifact@v2.0.8
uses: actions/download-artifact@v4.1.7
with:
path: test_results
name: log-artifact
Expand Down Expand Up @@ -672,7 +672,7 @@ jobs:
with:
ref: ${{needs.prepare_matrix.outputs.github_ref}}
- name: Download Desktop integration tests artifact
uses: actions/download-artifact@v2.0.8
uses: actions/download-artifact@v4.1.7
with:
path: testapps
name: testapps-desktop-${{ matrix.os }}-${{ matrix.ssl_variant }}
Expand All @@ -695,7 +695,7 @@ jobs:
retention-days: ${{ env.artifactRetentionDays }}
- name: Download log artifacts
if: ${{ needs.check_trigger.outputs.should_update_pr && failure() && !cancelled() }}
uses: actions/download-artifact@v2.0.8
uses: actions/download-artifact@v4.1.7
with:
path: test_results
name: log-artifact
Expand Down Expand Up @@ -732,7 +732,7 @@ jobs:
with:
ref: ${{needs.prepare_matrix.outputs.github_ref}}
- name: Download Android integration tests artifact
uses: actions/download-artifact@v2.0.8
uses: actions/download-artifact@v4.1.7
with:
path: testapps
name: testapps-android-${{ matrix.build_os }}
Expand Down Expand Up @@ -773,7 +773,7 @@ jobs:
retention-days: ${{ env.artifactRetentionDays }}
- name: Download log artifacts
if: ${{ needs.check_trigger.outputs.should_update_pr && failure() && !cancelled() }}
uses: actions/download-artifact@v2.0.8
uses: actions/download-artifact@v4.1.7
with:
path: test_results
name: log-artifact
Expand Down Expand Up @@ -809,7 +809,7 @@ jobs:
with:
ref: ${{needs.prepare_matrix.outputs.github_ref}}
- name: Download iOS integration tests artifact
uses: actions/download-artifact@v2.0.8
uses: actions/download-artifact@v4.1.7
with:
path: testapps
name: testapps-ios-macos-latest
Expand Down Expand Up @@ -850,7 +850,7 @@ jobs:
retention-days: ${{ env.artifactRetentionDays }}
- name: Download log artifacts
if: ${{ needs.check_trigger.outputs.should_update_pr && failure() && !cancelled() }}
uses: actions/download-artifact@v2.0.8
uses: actions/download-artifact@v4.1.7
with:
path: test_results
name: log-artifact
Expand Down Expand Up @@ -886,7 +886,7 @@ jobs:
with:
ref: ${{needs.prepare_matrix.outputs.github_ref}}
- name: Download tvOS integration tests artifact
uses: actions/download-artifact@v2.0.8
uses: actions/download-artifact@v4.1.7
with:
path: testapps
name: testapps-tvos-macos-latest
Expand All @@ -911,7 +911,7 @@ jobs:
retention-days: ${{ env.artifactRetentionDays }}
- name: Download log artifacts
if: ${{ needs.check_trigger.outputs.should_update_pr && failure() && !cancelled() }}
uses: actions/download-artifact@v2.0.8
uses: actions/download-artifact@v4.1.7
with:
path: test_results
name: log-artifact
Expand Down Expand Up @@ -949,7 +949,7 @@ jobs:
- name: Install python deps
run: pip install -r scripts/gha/requirements.txt
- name: Download log artifacts
uses: actions/download-artifact@v2.0.8
uses: actions/download-artifact@v4.1.7
with:
path: test_results
name: log-artifact
Expand Down
Loading