Skip to content

Commit 3160b92

Browse files
committed
tmp: Use 'smockle/cache-findings' instead of 'main', since actions haven’t landed in 'main' yet
1 parent 1872c4f commit 3160b92

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
@@ -24,7 +24,7 @@ runs:
2424
using: "composite"
2525
steps:
2626
- name: Restore cached value
27-
uses: github/continuous-accessibility-scanner/.github/actions/gh-cache/restore@main
27+
uses: github/continuous-accessibility-scanner/.github/actions/gh-cache/restore@smockle/cache-findings
2828
with:
2929
path: ${{ inputs.key }}
3030
token: ${{ inputs.token }}
@@ -33,7 +33,7 @@ runs:
3333
name: Update cached value
3434
run: echo "${{ inputs.value }}" > ${{ inputs.key }}
3535
- name: Save cached value
36-
uses: github/continuous-accessibility-scanner/.github/actions/gh-cache/save@main
36+
uses: github/continuous-accessibility-scanner/.github/actions/gh-cache/save@smockle/cache-findings
3737
with:
3838
path: ${{ inputs.key }}
3939
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@main
21+
uses: github/continuous-accessibility-scanner/.github/actions/gh-cache/cache@smockle/cache-findings
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@main
27+
uses: github/continuous-accessibility-scanner/.github/actions/find@smockle/cache-findings
2828
with:
2929
urls: ${{ inputs.urls }}
3030
- name: File
3131
id: file
32-
uses: github/continuous-accessibility-scanner/.github/actions/file@main
32+
uses: github/continuous-accessibility-scanner/.github/actions/file@smockle/cache-findings
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@main
40+
uses: github/continuous-accessibility-scanner/.github/actions/fix@smockle/cache-findings
4141
with:
4242
issue_numbers: ${{ steps.file.outputs.issue_numbers }}
4343
repository: ${{ inputs.repository }}
4444
token: ${{ inputs.token }}
4545
- name: Save cached_findings
46-
uses: github/continuous-accessibility-scanner/.github/actions/gh-cache/cache@main
46+
uses: github/continuous-accessibility-scanner/.github/actions/gh-cache/cache@smockle/cache-findings
4747
with:
4848
key: cached_findings-${{ github.ref_name }}
4949
value: ${{ steps.file.outputs.findings }}

0 commit comments

Comments
 (0)