diff --git a/action.yml b/action.yml index 3a63e5f..072f987 100644 --- a/action.yml +++ b/action.yml @@ -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 @@ -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 }} @@ -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 }}