Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update/fix github actions versions #36

Merged
merged 1 commit into from
Jul 30, 2024
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
12 changes: 6 additions & 6 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Run axe Accessibility Linter
description: Lints all changed files using the axe DevTools Linter
branding:
icon: 'check-circle'
color: 'blue'
icon: "check-circle"
color: "blue"
inputs:
github_token:
description: Github Token
Expand All @@ -15,15 +15,15 @@ inputs:
required: false
default: https://axe-linter.deque.com
runs:
using: 'composite'
using: "composite"
steps:
- uses: actions/checkout@v2
- uses: mikefarah/yq@master
- uses: actions/checkout@v4
- uses: mikefarah/yq@f15500b20a1c991c8729870ba60a4dc3524b6a94 # Tag=v4
- name: Get changed files
id: changed_files
env:
GITHUB_TOKEN: ${{ inputs.github_token }}
uses: tj-actions/changed-files@v18.7
uses: tj-actions/changed-files@6b2903bdce6310cfbddd87c418f253cf29b2dec9 # Tag=v44
with:
files: |
**/*.js
Expand Down
Loading