Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
djungelorm committed Mar 9, 2024
1 parent 8444a81 commit 92ad860
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/actions/bazel-fetch/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
shell: python
- name: restore-bazel-cache
id: bazel-cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ${{ env.BAZEL_CACHE_PATH }}
key: bazel-cache-${{ runner.os }}-${{ env.BAZEL_VERSION }}-${{ hashFiles('WORKSPACE.bazel') }}
Expand All @@ -37,7 +37,7 @@ runs:
shell: python
- name: save-bazel-cache
if: steps.bazel-cache.outputs.cache-hit != 'true'
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: ${{ env.BAZEL_CACHE_PATH }}
key: bazel-cache-${{ runner.os }}-${{ env.BAZEL_VERSION }}-${{ hashFiles('WORKSPACE.bazel') }}
2 changes: 1 addition & 1 deletion .github/actions/upload-artifact/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
cp ${{ inputs.path }} tmp-artifact-dir/
shell: bash
- name: upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.name }}
path: tmp-artifact-dir/
Expand Down

0 comments on commit 92ad860

Please sign in to comment.