Skip to content

Commit

Permalink
Update dependency actions (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
lwojcik authored Mar 26, 2024
1 parent 508110f commit e88ac21
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ runs:
using: composite
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Read latest commit id
shell: bash
Expand All @@ -41,7 +41,7 @@ runs:
- name: Restore cached commit id
id: restore_cached_commit
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: "${{ inputs.cache_file_path }}"
key: ${{ inputs.cache_key_prefix }}-${{ steps.read_latest_commit.outputs.commit_id }}
Expand Down Expand Up @@ -95,7 +95,7 @@ runs:

- name: Save new commit id to cache
if: steps.compare_commits.outputs.should_deploy == 'true' && inputs.always_deploy != 'true'
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: ${{ inputs.cache_file_path }}
key: ${{ inputs.cache_key_prefix }}-${{ steps.read_latest_commit.outputs.commit_id }}

0 comments on commit e88ac21

Please sign in to comment.