Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/proposal_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: echo "key=seme-$(git -C seme rev-parse HEAD)" >> $GITHUB_OUTPUT

- name: Restore cache
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
id: restore-cache
with:
path: ${{ github.workspace }}/swift-evolution-metadata-extractor
Expand All @@ -52,7 +52,7 @@ jobs:
- name: Save to cache
if: steps.restore-cache.outputs.cache-hit != 'true'
id: save-to-cache
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: ${{ github.workspace }}/swift-evolution-metadata-extractor
key: ${{ steps.cache-key.outputs.key }}
Expand Down