Skip to content

Commit c262469

Browse files
committed
fix: Replace relative paths in 'uses'
1 parent bad0af6 commit c262469

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
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/actions/gh-cache/restore
28+
uses: github/accessibility-scanner/.github/actions/gh-cache/restore@v2
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/actions/gh-cache/save
44+
uses: github/accessibility-scanner/.github/actions/gh-cache/save@v2
4545
with:
4646
path: ${{ inputs.key }}
4747
token: ${{ inputs.token }}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
cache_key: ${{ steps.cache_key.outputs.cache_key }}
8080

8181
- name: Retrieve cached results
82-
uses: ./.github/actions/gh-cache/restore
82+
uses: github/accessibility-scanner/.github/actions/gh-cache/restore@v2
8383
with:
8484
path: ${{ steps.cache_key.outputs.cache_key }}
8585
token: ${{ secrets.GITHUB_TOKEN }}
@@ -122,7 +122,7 @@ jobs:
122122

123123
- name: Clean up cached results
124124
if: ${{ always() }}
125-
uses: ./.github/actions/gh-cache/delete
125+
uses: github/accessibility-scanner/.github/actions/gh-cache/delete@v2
126126
with:
127127
path: ${{ steps.cache_key.outputs.cache_key }}
128128
token: ${{ secrets.GITHUB_TOKEN }}

action.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ runs:
4141
steps:
4242
- name: Restore cached results
4343
id: restore
44-
uses: ./.github/actions/gh-cache/cache
44+
uses: github/accessibility-scanner/.github/actions/gh-cache/cache@v2
4545
with:
4646
key: ${{ inputs.cache_key }}
4747
token: ${{ inputs.token }}
@@ -58,20 +58,20 @@ runs:
5858
- if: ${{ inputs.login_url && inputs.username && inputs.password && !inputs.auth_context }}
5959
name: Authenticate
6060
id: auth
61-
uses: ./.github/actions/auth
61+
uses: github/accessibility-scanner/.github/actions/auth@v2
6262
with:
6363
login_url: ${{ inputs.login_url }}
6464
username: ${{ inputs.username }}
6565
password: ${{ inputs.password }}
6666
- name: Find
6767
id: find
68-
uses: ./.github/actions/find
68+
uses: github/accessibility-scanner/.github/actions/find@v2
6969
with:
7070
urls: ${{ inputs.urls }}
7171
auth_context: ${{ inputs.auth_context || steps.auth.outputs.auth_context }}
7272
- name: File
7373
id: file
74-
uses: ./.github/actions/file
74+
uses: github/accessibility-scanner/.github/actions/file@v2
7575
with:
7676
findings: ${{ steps.find.outputs.findings }}
7777
repository: ${{ inputs.repository }}
@@ -88,7 +88,7 @@ runs:
8888
- if: ${{ inputs.skip_copilot_assignment != 'true' }}
8989
name: Fix
9090
id: fix
91-
uses: ./.github/actions/fix
91+
uses: github/accessibility-scanner/.github/actions/fix@v2
9292
with:
9393
issues: ${{ steps.get_issues_from_filings.outputs.issues }}
9494
repository: ${{ inputs.repository }}
@@ -118,7 +118,7 @@ runs:
118118
FILINGS: ${{ steps.file.outputs.filings }}
119119
FIXINGS: ${{ steps.fix.outputs.fixings }}
120120
- name: Save cached results
121-
uses: ./.github/actions/gh-cache/cache
121+
uses: github/accessibility-scanner/.github/actions/gh-cache/cache@v2
122122
with:
123123
key: ${{ inputs.cache_key }}
124124
value: ${{ steps.results.outputs.results }}

0 commit comments

Comments
 (0)