Skip to content

Commit 912fb1a

Browse files
committed
fix: Replace 'smockle/cache-findings' branch with 'main'
1 parent 3138fc1 commit 912fb1a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/actions/gh-cache/cache/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525
using: "composite"
2626
steps:
2727
- name: Restore cached value
28-
uses: github/continuous-accessibility-scanner/.github/actions/gh-cache/restore@smockle/cache-findings
28+
uses: github/continuous-accessibility-scanner/.github/actions/gh-cache/restore@main
2929
with:
3030
path: ${{ inputs.key }}
3131
token: ${{ inputs.token }}
@@ -41,7 +41,7 @@ runs:
4141
4242
- if: ${{ inputs.value }}
4343
name: Save cached value
44-
uses: github/continuous-accessibility-scanner/.github/actions/gh-cache/save@smockle/cache-findings
44+
uses: github/continuous-accessibility-scanner/.github/actions/gh-cache/save@main
4545
with:
4646
path: ${{ inputs.key }}
4747
token: ${{ inputs.token }}

action.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,32 +18,32 @@ runs:
1818
steps:
1919
- name: Restore cached_findings
2020
id: restore
21-
uses: github/continuous-accessibility-scanner/.github/actions/gh-cache/cache@smockle/cache-findings
21+
uses: github/continuous-accessibility-scanner/.github/actions/gh-cache/cache@main
2222
with:
2323
key: cached_findings-${{ github.ref_name }}
2424
token: ${{ inputs.token }}
2525
- name: Find
2626
id: find
27-
uses: github/continuous-accessibility-scanner/.github/actions/find@smockle/cache-findings
27+
uses: github/continuous-accessibility-scanner/.github/actions/find@main
2828
with:
2929
urls: ${{ inputs.urls }}
3030
- name: File
3131
id: file
32-
uses: github/continuous-accessibility-scanner/.github/actions/file@smockle/cache-findings
32+
uses: github/continuous-accessibility-scanner/.github/actions/file@main
3333
with:
3434
findings: ${{ steps.find.outputs.findings }}
3535
repository: ${{ inputs.repository }}
3636
token: ${{ inputs.token }}
3737
cached_findings: ${{ steps.restore.outputs.value }}
3838
- name: Fix
3939
id: fix
40-
uses: github/continuous-accessibility-scanner/.github/actions/fix@smockle/cache-findings
40+
uses: github/continuous-accessibility-scanner/.github/actions/fix@main
4141
with:
4242
issue_urls: ${{ steps.file.outputs.opened_issue_urls }}
4343
repository: ${{ inputs.repository }}
4444
token: ${{ inputs.token }}
4545
- name: Save cached_findings
46-
uses: github/continuous-accessibility-scanner/.github/actions/gh-cache/cache@smockle/cache-findings
46+
uses: github/continuous-accessibility-scanner/.github/actions/gh-cache/cache@main
4747
with:
4848
key: cached_findings-${{ github.ref_name }}
4949
value: ${{ steps.file.outputs.findings }}

0 commit comments

Comments
 (0)