Skip to content

Commit

Permalink
chore: bump upload/download artifact action (#164)
Browse files Browse the repository at this point in the history
* chore: bump actions/upload-artifact to v4.3.1

* chore: bump actions/download-artifact to v4.1.4
  • Loading branch information
erikburt committed Apr 4, 2024
1 parent d9df3c6 commit 7882cf3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion chainlink-testing-framework/build-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ runs:
echo "Built binary at ./integration-tests/tests"
- name: Publish Binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
with:
name: ${{ inputs.binary_name }}
path: ./integration-tests/tests
4 changes: 2 additions & 2 deletions chainlink-testing-framework/run-tests-binary/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ runs:
# Download any external artifacts
- name: Download Artifacts
if: inputs.download_contract_artifacts_path != 'none'
uses: actions/download-artifact@v3
uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 # v4.1.4
with:
name: artifacts
path: ${{ inputs.download_contract_artifacts_path }}
Expand Down Expand Up @@ -131,7 +131,7 @@ runs:
- name: Publish Artifacts
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
with:
name: ${{ inputs.artifacts_name }}
path: ${{ inputs.artifacts_location }}
Expand Down
4 changes: 2 additions & 2 deletions chainlink-testing-framework/run-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ runs:
# Download any external artifacts
- name: Download Artifacts
if: inputs.download_contract_artifacts_path != 'none'
uses: actions/download-artifact@v3
uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 # v4.1.4
with:
name: artifacts
path: ${{ inputs.download_contract_artifacts_path }}
Expand Down Expand Up @@ -185,7 +185,7 @@ runs:
- name: Publish Artifacts
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
with:
name: ${{ inputs.artifacts_name }}
path: ${{ inputs.artifacts_location }}
Expand Down

0 comments on commit 7882cf3

Please sign in to comment.