Skip to content

Commit

Permalink
Merge branch 'dependabot/github_actions/actions/download-artifact-4' …
Browse files Browse the repository at this point in the history
…into dependabot/github_actions/actions/upload-artifact-4

I think both artifact interaction mechanisms need to be updated at the
same time in order for them to properly interact with each other so I'm
merging these changes
  • Loading branch information
tomeichlersmith committed Dec 20, 2023
2 parents d76ce6b + 7ef4970 commit 5f2b2d3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/generate_pr_gold.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
matrix: ${{fromJson(needs.compile-ldmx-sw.outputs.job_matrix)}}
steps:
- name: Download ldmx-sw Package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ldmx-sw-build-${{ github.sha }}

Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:

- name: Download All the Gold
id: download
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: '../'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/new_pre_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
matrix: ${{fromJson(needs.compile-ldmx-sw.outputs.job_matrix)}}
steps:
- name: Download ldmx-sw Package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ldmx-sw-build-${{ github.sha }}

Expand All @@ -82,7 +82,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download Generated Histograms
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: '.'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
fail-fast: false
steps:
- name: Download ldmx-sw Package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ldmx-sw-build-${{ github.sha }}

Expand Down

0 comments on commit 5f2b2d3

Please sign in to comment.