Skip to content

Commit

Permalink
fix: downgrade actions/upload-artifact version (#12)
Browse files Browse the repository at this point in the history
It seems the bump in the @actions/artifacts npm dependency in v4.3.1 of actions/upload-artifact has introduced a flaky error in the back end communication: actions/upload-artifact#543

Downgrade to v4.3.0 to avoid this.
  • Loading branch information
assignUser committed Apr 11, 2024
1 parent b83fd6d commit a014fa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion save/action.yml
Expand Up @@ -115,7 +115,7 @@ runs:
- name: Upload Stash
id: upload
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
with:
name: ${{ steps.mung.outputs.stash_name }}
path: ${{ inputs.path }}
Expand Down

0 comments on commit a014fa4

Please sign in to comment.