{"id":6322427,"name":"a11ywatch/github-actions","ecosystem":"actions","description":"Fast and feature-packed web accessibility testing.","homepage":"https://github.com/marketplace/actions/web-accessibility-evaluation","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/a11ywatch/github-actions","keywords_array":["a11ywatch","accessibility","github-actions","web-accessibility","web-accessibility-tool"],"namespace":"a11ywatch","versions_count":130,"first_release_published_at":"2022-03-09T18:05:48.000Z","latest_release_published_at":"2024-02-22T23:28:36.000Z","latest_release_number":"v2.1.10","last_synced_at":"2026-05-10T10:02:14.480Z","created_at":"2023-02-13T05:16:12.461Z","updated_at":"2026-05-10T10:02:14.480Z","registry_url":"https://github.com/a11ywatch/github-actions","install_command":null,"documentation_url":null,"metadata":{"name":"Web Accessibility Evaluation","true":{"push":{"branches":["$default-branch"]},"pull_request":{"branches":["$default-branch"]}},"author":"A11yWatch","branding":{"icon":"shield","color":"gray-dark"},"description":"Fast and feature-packed web accessibility testing.","inputs":{"WEBSITE_URL":{"description":"Website domain to scan","required":true},"FIX":{"description":"Attempt to apply recommendations to code.","required":false,"default":false},"EXTERNAL":{"description":"Use the A11yWatch external API.","required":false,"default":false},"SITE_WIDE":{"description":"Perform a site-wide scan.","required":false,"default":false},"SITEMAP":{"description":"Extend crawl with sitemap links.","required":false,"default":false},"SUBDOMAINS":{"description":"Include all subdomains.","required":false,"default":false},"TLD":{"description":"Include all TLD extensions.","required":false,"default":false},"RECORD":{"description":"Enable video recording audits to a directory location.","required":false,"default":false},"FAIL_TOTAL_COUNT":{"description":"Use to fail the CI if the amount of issues of type errors and warnings is greater than the count.","required":false,"default":0},"FAIL_ERRORS_COUNT":{"description":"Use to fail the CI if the amount of issues of type errors is greater than the count.","required":false,"default":0},"FAIL_WARNINGS_COUNT":{"description":"Use to fail the CI if the amount of issues of type warnings is greater than the count.","required":false,"default":0},"DISABLE_PR_STATS":{"description":"Disable the bot from posting on your PR.","required":false,"default":false},"TOKEN":{"description":"The github token to use for posting comments.","required":false,"default":""},"LIST":{"description":"Report the output to github as a pass or fail list.","required":false,"default":false},"A11YWATCH_TOKEN":{"description":"The A11yWatch token to authenticate to the API.","required":false,"default":""},"COMPUTER_VISION_ENDPOINT":{"description":"The Computer Vision endpoint to use for advanced AI.","required":false,"default":""},"COMPUTER_VISION_SUBSCRIPTION_KEY":{"description":"The Computer Vision subscription key to use for advanced AI.","required":false,"default":""},"SLIM":{"description":"Use a gRPC client to gather issues.","required":false,"default":true},"UPGRADE":{"description":"Upgrade the CLI to latest across runs.","required":false,"default":false},"UPLOAD":{"description":"Upload the audit as an artifact.","required":false,"default":false}},"outputs":{"results":{"description":"Website Results","value":"${{ steps.a11ywatch-results-generator.outputs.results }}"},"issues":{"description":"The amount of issues found on the page","value":"${{ steps.a11ywatch-results-generator.outputs.issues }}"}},"runs":{"using":"composite","steps":[{"name":"Checkout code","if":"${{ inputs.FIX == 'true' }}","uses":"actions/checkout@v4","with":{"repository":"${{ github.event.pull_request.head.repo.full_name }}","ref":"${{ github.event.pull_request.head.ref }}","clean":false}},{"name":"Get yarn cache directory path","if":"${{ inputs.EXTERNAL != 'true' }}","id":"yarn-cache-dir-path","run":"echo \"dir=$(yarn cache dir)\" \u003e\u003e $GITHUB_OUTPUT","shell":"bash"},{"uses":"actions/cache@v3","if":"${{ inputs.EXTERNAL != 'true' }}","id":"yarn-cache","with":{"path":"${{ steps.yarn-cache-dir-path.outputs.dir }}","key":"${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}","restore-keys":"${{ runner.os }}-yarn-\n"}},{"name":"Cache node modules","if":"${{ inputs.EXTERNAL != 'true' }}","id":"cache-npm","uses":"actions/cache@v3","env":{"cache-name":"cache-node-modules"},"with":{"path":"~/.npm","key":"${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}","restore-keys":"${{ runner.os }}-build-${{ env.cache-name }}-\n${{ runner.os }}-build-\n${{ runner.os }}-\n"}},{"name":"Cache playwright binaries","if":"${{ inputs.EXTERNAL != 'true' }}","uses":"actions/cache@v3","id":"playwright-cache","with":{"path":"~/.cache/ms-playwright\n","key":"${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}"}},{"name":"Cache cargo crates","uses":"actions/cache@v3","id":"cache-cargo","env":{"cache-name":"cache-cargo-crates"},"with":{"path":"~/.cargo/bin/\n~/.cargo/registry/index/\n~/.cargo/registry/cache/\n~/.cargo/git/db/\ntarget/\n","key":"~/.cargo/bin/a11ywatch"}},{"name":"Install Rust, Cargo-Update, Protobuf Compiler","if":"steps.cache-cargo.outputs.cache-hit != 'true'","shell":"bash","run":"curl https://sh.rustup.rs -sSf | sh -s -- -y\nsudo apt update \u0026\u0026 sudo apt upgrade -y\nsudo apt install -y protobuf-compiler libprotobuf-dev\n"},{"name":"A11yWatch CLI Install","if":"${{ inputs.SLIM == 'true' }}","uses":"baptiste0928/cargo-install@v1","with":{"crate":"a11ywatch_cli","version":"0.10.15","features":"grpc"}},{"name":"A11yWatch CLI Install","if":"${{ inputs.SLIM == 'false' }}","uses":"baptiste0928/cargo-install@v1","with":{"crate":"a11ywatch_cli","version":"0.10.15"}},{"name":"Configure CLI creds","if":"${{ inputs.A11YWATCH_TOKEN }}","shell":"bash","run":"a11ywatch --set-token ${{ inputs.A11YWATCH_TOKEN }}"},{"name":"Configure Computer Vision API KEY","if":"${{ inputs.COMPUTER_VISION_SUBSCRIPTION_KEY }}","shell":"bash","run":"a11ywatch --set-cv-token ${{ inputs.COMPUTER_VISION_SUBSCRIPTION_KEY }}"},{"name":"Configure Computer Vision URL","if":"${{ inputs.COMPUTER_VISION_ENDPOINT }}","shell":"bash","run":"a11ywatch --set-cv-url ${{ inputs.COMPUTER_VISION_ENDPOINT }}"},{"name":"Configure Recording","if":"${{ inputs.RECORD }}","shell":"bash","run":"a11ywatch --set-recording ${{ inputs.RECORD }}"},{"name":"Install ffmpeg for Recordings","if":"${{ inputs.RECORD \u0026\u0026 inputs.RECORD != 'false' }}","uses":"FedericoCarboni/setup-ffmpeg@v2"},{"name":"Build A11yWatch Service","if":"${{ inputs.EXTERNAL != 'true' \u0026\u0026 inputs.UPGRADE == 'true' }}","shell":"bash","run":"a11ywatch build --standalone --local ${{ inputs.UPGRADE == 'true' \u0026\u0026 '--upgrade' || '' }}"},{"name":"Install playwright Browsers","if":"${{ inputs.EXTERNAL != 'true' \u0026\u0026 steps.playwright-cache.outputs.cache-hit != 'true' }}","run":"npx playwright install --with-deps","shell":"bash"},{"name":"Start A11yWatch Service","if":"${{ inputs.EXTERNAL != 'true' }}","shell":"bash","run":"a11ywatch start --standalone --local"},{"name":"A11yWatch Scan [Local]","if":"${{ inputs.EXTERNAL != 'true' \u0026\u0026 inputs.SITE_WIDE == 'false' }}","shell":"bash","run":"a11ywatch scan --url ${{ inputs.WEBSITE_URL }} --save ${{ inputs.FIX == 'true' \u0026\u0026 '--fix' || '' }}"},{"name":"A11yWatch Scan [External]","if":"${{ inputs.EXTERNAL == 'true' \u0026\u0026 inputs.SITE_WIDE == 'false' }}","shell":"bash","run":"a11ywatch scan --url ${{ inputs.WEBSITE_URL }} --external --save ${{ inputs.FIX == 'true' \u0026\u0026 '--fix' || '' }}"},{"name":"A11yWatch Crawl [Local]","if":"${{ inputs.EXTERNAL != 'true' \u0026\u0026 inputs.SITE_WIDE == 'true' }}","shell":"bash","run":"a11ywatch crawl --url ${{ inputs.WEBSITE_URL }} ${{ inputs.SUBDOMAINS == 'true' \u0026\u0026 '--subdomains' || '' }} ${{ inputs.TLD == 'true' \u0026\u0026 '--tld' || ''}} ${{ inputs.SITEMAP == 'true' \u0026\u0026 '--sitemap' || '' }} --save ${{ inputs.FIX == 'true' \u0026\u0026 '--fix' || '' }}"},{"name":"A11yWatch Crawl [External]","if":"${{ inputs.EXTERNAL == 'true' \u0026\u0026 inputs.SITE_WIDE == 'true' }}","shell":"bash","run":"a11ywatch crawl --url ${{ inputs.WEBSITE_URL }} ${{ inputs.SUBDOMAINS == 'true' \u0026\u0026 '--subdomains' || '' }} ${{ inputs.TLD == 'true' \u0026\u0026 '--tld' || ''}} ${{ inputs.SITEMAP == 'true' \u0026\u0026 '--sitemap' || '' }} --external --save ${{ inputs.FIX == 'true' \u0026\u0026 '--fix' || '' }}"},{"name":"Scan Results Check","id":"a11ywatch-results-generator","shell":"bash","run":"# get results path\nresults_path=\"$(a11ywatch --find-results)\"\n\nwebsite_issues_total=$(a11ywatch --results-issues)\nwebsite_issues_errors=$(a11ywatch --results-issues-errors)\nwebsite_issues_warnings=$(a11ywatch --results-issues-warnings)\n\ntotal_limit=${{ inputs.FAIL_TOTAL_COUNT }}\nerrors_limit=${{ inputs.FAIL_ERRORS_COUNT }}\nwarnings_limit=${{ inputs.FAIL_WARNINGS_COUNT }}\n\ntotal_count=${total_limit:-0}\nerrors_count=${errors_limit:-0}\nwarnings_count=${warnings_limit:-0}\n\nif [ \"$total_count\" -gt 0 ]; then\n  if [ $website_issues_total -gt \"$total_count\" ]; then\n      echo \"Failed accessibility test. $website_issues_total total errors and warnings exceeded limit!\"\n      exit 1\n  fi\nfi\n\nif [ \"$errors_count\" -gt 0 ]; then\n  if [ $website_issues_errors -gt \"$errors_count\" ]; then\n      echo \"Failed accessibility test. $website_issues_errors errors exceeded the limit!\"\n      exit 1\n  fi\nfi\n\nif [ \"$warnings_count\" -gt 0 ]; then\n  if [ $website_issues_warnings -gt \"$warnings_count\" ]; then\n      echo \"Failed accessibility test. $website_issues_warnings warnings exceeded limit!\"\n      exit 1\n  fi\nfi\n\nresults_json=\"$(a11ywatch --results-parsed)\"\necho \"results=$(echo ${results_json})\" \u003e\u003e $GITHUB_OUTPUT\necho \"issues=$(echo ${website_issues_total})\" \u003e\u003e $GITHUB_OUTPUT\n"},{"name":"Post Stats to GitHub PR","shell":"bash","if":"${{ github.event_name == 'pull_request' \u0026\u0026 inputs.DISABLE_PR_STATS == 'false' }}","run":"# post github\nGH_TOKEN=\"${{ inputs.TOKEN || github.token }}\"\n\nresults_path=\"$(a11ywatch --find-results)\"\ngh_api_url=\"$(a11ywatch --github-api-url)\"\nwebsite_issues=$(a11ywatch --results-issues)\n\n# send pr results if issues exist\nif [ \"$website_issues\" -gt 0 ]; then\n  # check for open pr\n  pr_response=$(curl --location --request GET \"$gh_api_url\" \\\n      -H \"Authorization: token $GH_TOKEN\")\n\n  if [ $(echo $pr_response | jq length) -eq 0 ]; then\n    echo \"No PR found to update\"\n  else          \n    pr_comment_url=$(echo $pr_response | jq -r \".[]._links.comments.href\")\n\n    # extract the results to a file\n    body=\"$( a11ywatch --github-results-path extract --platform github ${{ inputs.LIST == 'true' \u0026\u0026 '-l' || ''}} )\"\n    \n    # get results of the file path \n    gh_file=\"@$(a11ywatch --github-results-path)\"\n\n    # post comment to github\n    curl -X POST -d \"$gh_file\" \"$pr_comment_url\" \\\n      -H \"Authorization: token $GH_TOKEN\" \\\n      -H 'Content-Type: application/json'\n  fi\nfi\n"},{"uses":"EndBug/add-and-commit@v9","if":"${{ inputs.FIX == 'true' }}","with":{"message":"fix(accessibility): add recommendations from scan","committer_name":"GitHub Actions"}},{"name":"Get audit directory","id":"a11ywatch-audit-directory","if":"${{ inputs.UPLOAD \u0026\u0026 inputs.UPLOAD != 'false' \u0026\u0026 (failure() || success()) }}","shell":"bash","run":"echo \"audit_dir=$( echo \"$(a11ywatch --find-results)\" )\" \u003e\u003e $GITHUB_OUTPUT"},{"uses":"actions/upload-artifact@v3","if":"${{ inputs.UPLOAD \u0026\u0026 inputs.UPLOAD != 'false' \u0026\u0026 (failure() || success()) }}","with":{"name":"Audit Results","path":"${{ steps.a11ywatch-audit-directory.outputs.audit_dir  }}"}},{"uses":"actions/upload-artifact@v3","if":"${{ inputs.RECORD \u0026\u0026 inputs.RECORD != 'false' \u0026\u0026 (failure() || success()) }}","with":{"name":"Recordings","path":"${{ inputs.RECORD  }}"}},{"name":"Stop A11yWatch Service","if":"${{ !inputs.EXTERNAL }}","shell":"bash","run":"a11ywatch stop"}]},"default_branch":"main","path":null},"repo_metadata":{"uuid":"468039560","full_name":"a11ywatch/github-actions","owner":"a11ywatch","description":"A11yWatch Github Action","archived":false,"fork":false,"pushed_at":"2024-02-23T19:24:19.000Z","size":123,"stargazers_count":16,"open_issues_count":1,"forks_count":4,"subscribers_count":4,"default_branch":"main","last_synced_at":"2024-02-24T00:39:47.297Z","etag":null,"topics":["a11ywatch","accessibility","github-actions","web-accessibility","web-accessibility-tool"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/web-accessibility-evaluation","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/a11ywatch.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2022-03-09T18:04:41.000Z","updated_at":"2023-12-13T13:43:15.000Z","dependencies_parsed_at":"2023-09-27T23:14:21.146Z","dependency_job_id":"a7626667-87ef-407c-b71e-957746ba1d23","html_url":"https://github.com/a11ywatch/github-actions","commit_stats":{"total_commits":61,"total_committers":2,"mean_commits":30.5,"dds":"0.016393442622950838","last_synced_commit":"b6c4b69cda04e0abc6a215b37251b737de4f331e"},"previous_names":[],"tags_count":130,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/a11ywatch","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":187565889,"owners_count":11980660,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"},"owner_record":{"login":"a11ywatch","name":"A11yWatch","uuid":"60323887","kind":"organization","description":"The fast and accurate web accessibility tool","email":"support@a11ywatch.com","website":"https://a11ywatch.com","location":"United States of America","twitter":"a11ywatcher","company":null,"icon_url":"https://avatars.githubusercontent.com/u/60323887?v=4","repositories_count":24,"last_synced_at":"2023-03-04T01:25:14.309Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/a11ywatch","created_at":"2022-11-14T07:37:38.755Z","updated_at":"2023-03-04T01:25:14.385Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/a11ywatch","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/a11ywatch/repositories"},"tags":[{"name":"v2.1.10","sha":"d61a01aad49cc54db0a669cc61b7e85f08994162","kind":"commit","published_at":"2024-02-22T23:28:36.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v2.1.10","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v2.1.10","dependencies_parsed_at":null,"dependency_job_id":"ea879b15-d0ba-49fc-ab4c-c423b5df0841","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.10","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.10/manifests"},{"name":"v2.1.9","sha":"6a76505233ff01ecd757865e3e39d93ba5fb90f0","kind":"commit","published_at":"2023-11-30T00:39:03.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v2.1.9","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v2.1.9","dependencies_parsed_at":"2023-12-02T04:30:22.161Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.9/manifests"},{"name":"v2.1.8","sha":"bcc09a78b37521b6bad3caf5caf3e78ab1bd7122","kind":"commit","published_at":"2023-09-28T19:11:53.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v2.1.8","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v2.1.8","dependencies_parsed_at":"2023-11-09T05:59:01.723Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.8/manifests"},{"name":"v2.1.7","sha":"b1e26712b3a633d2879cbb3ebad01b2c72a40c7c","kind":"commit","published_at":"2023-09-28T15:42:57.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v2.1.7","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v2.1.7","dependencies_parsed_at":"2023-11-09T05:59:01.725Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.7/manifests"},{"name":"v2.1.6","sha":"f5f14f6dea4de1fb0178eb1a086e44f8fa45c831","kind":"commit","published_at":"2023-09-27T22:31:12.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v2.1.6","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v2.1.6","dependencies_parsed_at":"2023-11-09T05:59:02.293Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.6/manifests"},{"name":"v2.1.5","sha":"408f0d3c3a5f8747e4bfd7e7d0e236bb38cd34ca","kind":"commit","published_at":"2023-09-27T19:54:55.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v2.1.5","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v2.1.5","dependencies_parsed_at":"2023-11-09T05:59:02.205Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.5/manifests"},{"name":"v2.1.4","sha":"d730c7f036a9a6dc395d6f33373bc06544c981b3","kind":"commit","published_at":"2023-09-27T18:10:18.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v2.1.4","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v2.1.4","dependencies_parsed_at":"2023-11-09T05:59:01.893Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.4/manifests"},{"name":"v2","sha":"d730c7f036a9a6dc395d6f33373bc06544c981b3","kind":"commit","published_at":"2023-09-27T18:10:18.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v2","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v2","dependencies_parsed_at":"2023-11-09T05:59:02.099Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2/manifests"},{"name":"v2.1.3","sha":"af4bfe61f6965ecbd8529570eb63b9e2d429ddd8","kind":"commit","published_at":"2023-09-27T17:40:01.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v2.1.3","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v2.1.3","dependencies_parsed_at":"2023-11-09T05:59:01.723Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.3/manifests"},{"name":"v2.1.2","sha":"724236beb6ec1f2db79342b64eb74ce7ef28d639","kind":"commit","published_at":"2023-09-22T16:39:08.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v2.1.2","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v2.1.2","dependencies_parsed_at":"2023-11-09T05:59:01.723Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.2/manifests"},{"name":"v2.1.1","sha":"404c46c17ea5de47c2423e7382ed5019783d9795","kind":"commit","published_at":"2023-09-22T15:55:26.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v2.1.1","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v2.1.1","dependencies_parsed_at":"2023-11-09T05:59:01.724Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.1/manifests"},{"name":"v2.1.0","sha":"6d9ce8aa59cdcf584d7ea67dac77f73ff19323bc","kind":"commit","published_at":"2023-09-22T15:48:51.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v2.1.0","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v2.1.0","dependencies_parsed_at":"2023-11-09T05:59:02.332Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.1.0/manifests"},{"name":"v2.0.2","sha":"1a0c7761da757e2688ec208f0d2430cd09505805","kind":"commit","published_at":"2023-06-21T15:48:51.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v2.0.2","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v2.0.2","dependencies_parsed_at":"2023-11-09T05:59:02.148Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.0.2/manifests"},{"name":"v2.0.1","sha":"c684e310990ae104190e4bdbad8201e424b59a45","kind":"commit","published_at":"2023-05-31T19:30:05.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v2.0.1","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v2.0.1","dependencies_parsed_at":"2023-11-09T05:59:01.908Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.0.1/manifests"},{"name":"v2.0.0","sha":"498934b1aef092fb2da1163496dc54ce3237806a","kind":"commit","published_at":"2023-05-23T19:41:28.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v2.0.0","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v2.0.0","dependencies_parsed_at":"2023-11-09T05:59:02.085Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v2.0.0/manifests"},{"name":"v1.15.0","sha":"75b2d0bbb437086f9991c768b2654620fe0024c3","kind":"commit","published_at":"2023-05-22T22:29:47.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.15.0","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.15.0","dependencies_parsed_at":"2023-11-09T05:59:01.689Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.15.0/manifests"},{"name":"v1.14.1","sha":"2c4be481d4fb88df27766ff764bde1832b901b42","kind":"commit","published_at":"2023-04-26T22:14:08.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.14.1","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.14.1","dependencies_parsed_at":"2023-11-09T05:59:01.683Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.14.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.14.1/manifests"},{"name":"v1.14.0","sha":"d8f359ada0ceec58e9515c74a03c5b95ed70f2ec","kind":"commit","published_at":"2023-03-23T00:18:10.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.14.0","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.14.0","dependencies_parsed_at":"2023-11-09T05:59:02.086Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.14.0/manifests"},{"name":"v1.13.0","sha":"b6c4b69cda04e0abc6a215b37251b737de4f331e","kind":"commit","published_at":"2023-01-23T18:24:44.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.13.0","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.13.0","dependencies_parsed_at":"2023-11-09T05:59:01.478Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.13.0/manifests"},{"name":"v1.12.2","sha":"c4f2d1fa7c653830163f5a6b749a2b95e85d323e","kind":"commit","published_at":"2023-01-15T08:01:03.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.12.2","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.12.2","dependencies_parsed_at":"2023-11-09T05:59:02.335Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.12.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.12.2/manifests"},{"name":"v1.12.3","sha":"c4f2d1fa7c653830163f5a6b749a2b95e85d323e","kind":"commit","published_at":"2023-01-15T08:01:03.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.12.3","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.12.3","dependencies_parsed_at":"2023-11-09T05:59:02.319Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.12.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.12.3/manifests"},{"name":"v.1.12.2","sha":"e28b88e0b8e6c05d584465e68f8cf7a2e3d0c1df","kind":"commit","published_at":"2023-01-07T18:25:46.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v.1.12.2","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v.1.12.2","dependencies_parsed_at":"2023-11-09T05:59:02.001Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v.1.12.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v.1.12.2/manifests"},{"name":"v1.12.1","sha":"d0e653502e5887fe5a9ae1deda616a0d849996a4","kind":"commit","published_at":"2022-12-20T18:20:18.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.12.1","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.12.1","dependencies_parsed_at":"2023-11-09T05:59:02.029Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.12.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.12.1/manifests"},{"name":"v1.12.0","sha":"8857185660046ca42ae92436a96150b29ca620da","kind":"commit","published_at":"2022-10-05T11:01:53.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.12.0","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.12.0","dependencies_parsed_at":"2023-11-09T05:59:02.029Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.12.0/manifests"},{"name":"v1.11.1","sha":"8c60d4cc9670568033b00b553a1c1f40bb51ee30","kind":"commit","published_at":"2022-09-08T13:19:00.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.11.1","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.11.1","dependencies_parsed_at":"2023-11-09T05:59:02.211Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.11.1/manifests"},{"name":"v1.11.0","sha":"046bf5147f1e889367d93101cda34db28833052f","kind":"commit","published_at":"2022-08-08T13:17:20.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.11.0","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.11.0","dependencies_parsed_at":"2023-11-09T05:59:01.994Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.11.0/manifests"},{"name":"v1.10.8","sha":"5d7fc4c6f31e0b177d0830d3ff32fe9fcb4abaaa","kind":"commit","published_at":"2022-08-04T14:18:12.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.10.8","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.10.8","dependencies_parsed_at":"2023-11-09T05:59:01.997Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.10.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.10.8/manifests"},{"name":"v1.10.7","sha":"69b09bf33c2df0c63d8b200e56a3ee80aa7d79d6","kind":"commit","published_at":"2022-08-04T14:08:33.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.10.7","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.10.7","dependencies_parsed_at":"2023-11-09T05:59:02.027Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.10.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.10.7/manifests"},{"name":"v1.10.6","sha":"933d9bcf38c6df33529e448aae5546310beb8c00","kind":"commit","published_at":"2022-08-04T14:00:33.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.10.6","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.10.6","dependencies_parsed_at":"2023-11-09T05:59:01.996Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.10.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.10.6/manifests"},{"name":"v1.10.5","sha":"f41f69e64b60c408407faa63916b84736ce2633a","kind":"commit","published_at":"2022-08-04T13:34:56.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.10.5","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.10.5","dependencies_parsed_at":"2023-11-09T05:59:02.087Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.10.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.10.5/manifests"},{"name":"v1.10.4","sha":"08ed3cbff7304c1a6fa2f8439b25639982170d6b","kind":"commit","published_at":"2022-08-04T13:08:43.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.10.4","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.10.4","dependencies_parsed_at":"2023-05-30T16:40:23.060Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.10.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.10.4/manifests"},{"name":"v1.10.2","sha":"d1272c54c142d94f833c35830de1790e8bf70abb","kind":"commit","published_at":"2022-08-03T22:56:13.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.10.2","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.10.2","dependencies_parsed_at":"2023-05-30T16:40:23.533Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.10.2/manifests"},{"name":"v1.10.1","sha":"d648ca936fbb72d98406a3567246236746589ab2","kind":"commit","published_at":"2022-08-03T01:39:20.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.10.1","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.10.1","dependencies_parsed_at":"2023-05-30T16:40:23.942Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.10.1/manifests"},{"name":"v1.10.0","sha":"21c53b8ee22988cd49bd653560a855e05870a1a7","kind":"commit","published_at":"2022-08-03T01:18:44.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.10.0","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.10.0","dependencies_parsed_at":"2023-05-30T16:40:24.391Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.10.0/manifests"},{"name":"v1.9.4","sha":"4d97322619df593d311f45122309625e7412ba9d","kind":"commit","published_at":"2022-07-09T15:40:09.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.9.4","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.9.4","dependencies_parsed_at":"2023-05-30T16:40:24.694Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.9.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.9.4/manifests"},{"name":"v1.9.3","sha":"40df4f8b0fa5b1e0f01872d94376ae4d85a99027","kind":"commit","published_at":"2022-07-09T15:34:29.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.9.3","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.9.3","dependencies_parsed_at":"2023-05-30T16:40:25.057Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.9.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.9.3/manifests"},{"name":"v1.9.2","sha":"743f087e420866a067a62f6c5284e610560a2b64","kind":"commit","published_at":"2022-07-09T15:26:50.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.9.2","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.9.2","dependencies_parsed_at":"2023-05-30T16:40:25.301Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.9.2/manifests"},{"name":"v1.9.0","sha":"9140bb83d7dffa2119dd47896f59da57ef21a1bf","kind":"commit","published_at":"2022-07-05T15:21:22.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.9.0","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.9.0","dependencies_parsed_at":"2023-05-30T16:40:25.592Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.9.0/manifests"},{"name":"v1.8.6","sha":"da137b8f1f0fadc97b458e4f2f625dbd73f57d6d","kind":"commit","published_at":"2022-07-05T15:13:44.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.8.6","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.8.6","dependencies_parsed_at":"2023-05-30T16:40:25.970Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.8.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.8.6/manifests"},{"name":"v1.8.5","sha":"795b0f0f12876f45f828aac88dc5b0ce96739042","kind":"commit","published_at":"2022-07-05T14:55:46.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.8.5","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.8.5","dependencies_parsed_at":"2023-05-30T16:40:26.276Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.8.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.8.5/manifests"},{"name":"v1.8.4","sha":"6d29ab402af6ebf7226a5a0269fc7ec1336e34bd","kind":"commit","published_at":"2022-07-05T14:48:33.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.8.4","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.8.4","dependencies_parsed_at":"2023-05-30T16:40:26.541Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.8.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.8.4/manifests"},{"name":"v1.8.3","sha":"e63c53f2a85b15ddcf2a8a46b5e47553aeba7ae8","kind":"commit","published_at":"2022-07-05T14:00:11.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.8.3","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.8.3","dependencies_parsed_at":"2023-05-30T16:40:26.817Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.8.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.8.3/manifests"},{"name":"v1.8.2","sha":"dffd759cc0f7d0839f42c191a384572910ceea86","kind":"commit","published_at":"2022-07-04T22:04:28.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.8.2","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.8.2","dependencies_parsed_at":"2023-05-30T16:40:27.166Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.8.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.8.2/manifests"},{"name":"v1.8.1","sha":"ce13fd5a93cec2e16317e9ed3ad7e5e6a3f40555","kind":"commit","published_at":"2022-07-04T21:54:03.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.8.1","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.8.1","dependencies_parsed_at":"2023-05-30T16:40:27.450Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.8.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.8.1/manifests"},{"name":"v1.8.0","sha":"033a222bfa66ae4c5ad1268beb731814e06178ed","kind":"commit","published_at":"2022-07-04T20:42:38.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.8.0","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.8.0","dependencies_parsed_at":"2023-05-30T16:40:27.762Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.8.0/manifests"},{"name":"v1.7.1","sha":"3798eceb733e0b62b9754d9d6f1a0f16775d6d0d","kind":"commit","published_at":"2022-06-28T00:59:30.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.7.1","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.7.1","dependencies_parsed_at":"2023-05-30T16:40:28.811Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.7.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.7.1/manifests"},{"name":"v1.7.0","sha":"f9e02862852cb7a7a23a19f3e40937a9fa15d8ed","kind":"commit","published_at":"2022-06-27T00:34:19.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.7.0","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.7.0","dependencies_parsed_at":"2023-05-30T16:40:29.158Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.7.0/manifests"},{"name":"v1.6.4","sha":"a5b1c2b021ded2dd7d8d83e0640c6ccf8bfa74ef","kind":"commit","published_at":"2022-06-19T09:16:30.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.6.4","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.6.4","dependencies_parsed_at":"2023-05-30T16:40:29.435Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.6.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.6.4/manifests"},{"name":"v1.6.3","sha":"9e00ccd401da03443f0211c5e618d5a7c4e41261","kind":"commit","published_at":"2022-06-19T09:14:37.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.6.3","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.6.3","dependencies_parsed_at":"2023-05-30T16:40:29.715Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.6.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.6.3/manifests"},{"name":"v1.6.2","sha":"ce40a932a9def2018469663ef5d5fa133d403a52","kind":"commit","published_at":"2022-06-15T14:19:54.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.6.2","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.6.2","dependencies_parsed_at":"2023-05-30T16:40:29.979Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.6.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.6.2/manifests"},{"name":"v1.6.1","sha":"3ff80945734ebe16cae71d1c58ad714ec1e8a8af","kind":"commit","published_at":"2022-06-12T13:04:05.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.6.1","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.6.1","dependencies_parsed_at":"2023-05-30T16:40:30.258Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.6.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.6.1/manifests"},{"name":"v1.6.0","sha":"f0a801a972b27b2ad8ffc08991690b44a26a0c84","kind":"commit","published_at":"2022-06-09T21:54:04.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.6.0","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.6.0","dependencies_parsed_at":"2023-05-30T16:40:30.516Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.6.0/manifests"},{"name":"v1.5.1","sha":"ea55667645d5732cb47ae88582d08bba779e3ffa","kind":"commit","published_at":"2022-05-20T01:26:07.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.5.1","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.5.1","dependencies_parsed_at":"2023-05-30T16:40:30.854Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.5.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.5.1/manifests"},{"name":"v1.5.0","sha":"d892149b64225939a1427d9b326eccdf10fbc4be","kind":"commit","published_at":"2022-05-19T22:47:36.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.5.0","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.5.0","dependencies_parsed_at":"2023-05-30T16:40:31.130Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.5.0/manifests"},{"name":"v1.4.1","sha":"9009e195b19578a676ec568750f9a6feccdb86b8","kind":"commit","published_at":"2022-05-19T12:15:24.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.4.1","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.4.1","dependencies_parsed_at":"2023-05-30T16:40:31.487Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.4.1/manifests"},{"name":"v1.4.0","sha":"3702fcf97368449de10811d7c1798ad65644e129","kind":"commit","published_at":"2022-05-19T01:00:00.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.4.0","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.4.0","dependencies_parsed_at":"2023-05-30T16:40:31.760Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.4.0/manifests"},{"name":"v1.3.2","sha":"5ba348087f536eecc7979745b85942c6c9333ef3","kind":"commit","published_at":"2022-05-17T19:04:39.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.3.2","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.3.2","dependencies_parsed_at":"2023-05-30T16:40:32.074Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.3.2/manifests"},{"name":"v1.3.1","sha":"075c3071f0b9c21611ad80f51c064731ea5efe60","kind":"commit","published_at":"2022-05-12T16:08:12.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.3.1","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.3.1","dependencies_parsed_at":"2023-05-30T16:40:32.407Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.3.1/manifests"},{"name":"v1.3.0","sha":"37c5ce480a2227a1cdff8a246cd7e424096bec56","kind":"commit","published_at":"2022-05-10T17:01:43.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.3.0","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.3.0","dependencies_parsed_at":"2023-05-30T16:40:32.702Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.3.0/manifests"},{"name":"v1.2.48","sha":"6b5cfebf83565164052e35ab3fdf16f1c0c4481c","kind":"commit","published_at":"2022-05-09T20:38:15.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.48","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.48","dependencies_parsed_at":"2023-05-30T16:40:33.099Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.48","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.48/manifests"},{"name":"v1.2.47","sha":"92d2fd2ad986a73793d862d9062a26c1c5d94e5d","kind":"commit","published_at":"2022-05-09T14:33:18.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.47","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.47","dependencies_parsed_at":"2023-05-30T16:40:33.442Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.47","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.47/manifests"},{"name":"v1.2.46","sha":"879cb7418dba0391acd91e6d71243e67aa11f2c0","kind":"commit","published_at":"2022-05-09T03:47:46.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.46","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.46","dependencies_parsed_at":"2023-05-30T16:40:33.729Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.46","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.46/manifests"},{"name":"v1.2.45","sha":"1aa8813208bcac7f8c7fd13ab1977f7bc4c4e295","kind":"commit","published_at":"2022-05-08T17:47:20.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.45","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.45","dependencies_parsed_at":"2023-05-30T16:40:34.020Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.45","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.45/manifests"},{"name":"v1.2.44","sha":"16d7bfce9537f8598672ae8eda0086c97109151f","kind":"commit","published_at":"2022-05-03T23:35:55.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.44","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.44","dependencies_parsed_at":"2023-05-30T16:40:34.319Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.44","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.44/manifests"},{"name":"v1.2.43","sha":"5520340a5c5205b7f1e65a137accb0710dfe3296","kind":"commit","published_at":"2022-03-13T21:15:11.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.43","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.43","dependencies_parsed_at":"2023-05-30T16:40:34.652Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.43","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.43/manifests"},{"name":"v1.2.42","sha":"3c367a4ad203fd1ed64638ac6e0447301a1baa0f","kind":"commit","published_at":"2022-03-13T05:50:43.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.42","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.42","dependencies_parsed_at":"2023-05-30T16:40:34.906Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.42","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.42/manifests"},{"name":"v1.2.41","sha":"94eab9e7bae0a6866796d6bebe4bc6f447bf6208","kind":"commit","published_at":"2022-03-13T05:29:30.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.41","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.41","dependencies_parsed_at":"2023-05-30T16:40:35.212Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.41","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.41/manifests"},{"name":"v1.2.40","sha":"da146d41df74a746210f8fe1e39ee53ac964f762","kind":"commit","published_at":"2022-03-12T20:26:57.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.40","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.40","dependencies_parsed_at":"2023-05-30T16:40:35.476Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.40","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.40/manifests"},{"name":"v1.2.39","sha":"91a081372cf52e1f1002e10a1f4be64452b88a49","kind":"commit","published_at":"2022-03-12T20:24:16.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.39","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.39","dependencies_parsed_at":"2023-05-30T16:40:35.707Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.39","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.39/manifests"},{"name":"v1.2.38","sha":"2b15bde11e9f39a987ac1a8a2a1773ee5c4a5f63","kind":"commit","published_at":"2022-03-12T20:19:47.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.38","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.38","dependencies_parsed_at":"2023-05-30T16:40:35.998Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.38","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.38/manifests"},{"name":"v1.2.37","sha":"7d1e925a8b85bf364ad29657ec45f4b3faae6d92","kind":"commit","published_at":"2022-03-12T20:16:47.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.37","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.37","dependencies_parsed_at":"2023-05-30T16:40:36.286Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.37","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.37/manifests"},{"name":"v1.2.36","sha":"89e4ae0aa87feb9253bc6f5498a71717aaa45b48","kind":"commit","published_at":"2022-03-12T20:15:22.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.36","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.36","dependencies_parsed_at":"2023-05-30T16:40:36.596Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.36","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.36/manifests"},{"name":"v1.2.35","sha":"a2fe0d2f302e6699932a673107e4bf032093be90","kind":"commit","published_at":"2022-03-12T20:05:54.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.35","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.35","dependencies_parsed_at":"2023-05-30T16:40:36.838Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.35","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.35/manifests"},{"name":"v1.2.34","sha":"99af2290d0c304b019e4e2d09c5592ee3297ed88","kind":"commit","published_at":"2022-03-12T20:03:58.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.34","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.34","dependencies_parsed_at":"2023-05-30T16:40:37.054Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.34","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.34/manifests"},{"name":"v1.2.33","sha":"3f7975315a9faa787bbcc2f33433360641e9d063","kind":"commit","published_at":"2022-03-12T19:50:17.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.33","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.33","dependencies_parsed_at":"2023-05-30T16:40:37.340Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.33","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.33/manifests"},{"name":"v1.2.32","sha":"bf6b31ef73d0ba6ae641e8fa2f10f01659d1239e","kind":"commit","published_at":"2022-03-12T19:36:14.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.32","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.32","dependencies_parsed_at":"2023-05-30T16:40:37.571Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.32","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.32/manifests"},{"name":"v1.2.31","sha":"d9306235bb44526283bca7945989d2ab989655a8","kind":"commit","published_at":"2022-03-12T19:32:53.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.31","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.31","dependencies_parsed_at":"2023-05-30T16:40:37.839Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.31","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.31/manifests"},{"name":"v1.2.30","sha":"67065dfd9ac69fdcff188cfa57ad154b1afef2bc","kind":"commit","published_at":"2022-03-12T19:09:31.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.30","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.30","dependencies_parsed_at":"2023-05-30T16:40:38.082Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.30","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.30/manifests"},{"name":"v1.2.29","sha":"267cb3d66f7354a22464ce31570d756e244793d9","kind":"commit","published_at":"2022-03-12T18:59:10.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.29","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.29","dependencies_parsed_at":"2023-05-30T16:40:38.396Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.29","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.29/manifests"},{"name":"v1.2.28","sha":"fada8fdd9cfe6d6249dc1d4d30b64f252686cc33","kind":"commit","published_at":"2022-03-12T18:48:34.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.28","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.28","dependencies_parsed_at":"2023-05-30T16:40:38.634Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.28","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.28/manifests"},{"name":"v1.2.27","sha":"2c508e53032f22bc9594079524ca648e561b41b6","kind":"commit","published_at":"2022-03-12T18:43:05.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.27","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.27","dependencies_parsed_at":"2023-05-30T16:40:38.914Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.27","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.27/manifests"},{"name":"v1.2.26","sha":"e185823cc061ee1c6785d090ae8587438b590509","kind":"commit","published_at":"2022-03-12T18:36:21.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.26","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.26","dependencies_parsed_at":"2023-05-30T16:40:39.180Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.26","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.26/manifests"},{"name":"v1.2.25","sha":"8a8f1013852a70e1b36bd7866e1eab41fbde7225","kind":"commit","published_at":"2022-03-12T18:27:02.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.25","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.25","dependencies_parsed_at":"2023-05-30T16:40:39.443Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.25","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.25/manifests"},{"name":"v1.2.23","sha":"ca27ed29423d65468a1e4592d9ec2d6ca83b5647","kind":"commit","published_at":"2022-03-12T00:44:49.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.23","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.23","dependencies_parsed_at":"2023-05-30T16:40:39.890Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.23","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.23/manifests"},{"name":"v1.2.24","sha":"ca27ed29423d65468a1e4592d9ec2d6ca83b5647","kind":"commit","published_at":"2022-03-12T00:44:49.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.24","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.24","dependencies_parsed_at":"2023-05-30T16:40:39.666Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.24","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.24/manifests"},{"name":"v1.2.22","sha":"4f6d5a5c2aa2958974393bf1160eb6ba0793514c","kind":"commit","published_at":"2022-03-12T00:41:58.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.22","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.22","dependencies_parsed_at":"2023-05-30T16:40:40.155Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.22","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.22/manifests"},{"name":"v1.2.21","sha":"4c6742a3c9e21b46b3a0c69714cc7c77e0fd6e86","kind":"commit","published_at":"2022-03-12T00:28:22.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.21","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.21","dependencies_parsed_at":"2023-05-30T16:40:40.374Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.21","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.21/manifests"},{"name":"v1.2.20","sha":"0a69f077ddd49cd397184ac43654ebf1ff6d05d2","kind":"commit","published_at":"2022-03-11T20:07:46.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.20","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.20","dependencies_parsed_at":"2023-05-30T16:40:40.614Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.20","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.20/manifests"},{"name":"v1.2.19","sha":"9332417cfa0ccbdf2ee827bdf6792fec9a1e9797","kind":"commit","published_at":"2022-03-11T20:02:09.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.19","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.19","dependencies_parsed_at":"2023-05-30T16:40:40.886Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.19","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.19/manifests"},{"name":"v1.2.18","sha":"a56a534f8a5276b88c3229458010717b3fb73dff","kind":"commit","published_at":"2022-03-11T19:50:10.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.18","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.18","dependencies_parsed_at":"2023-05-30T16:40:41.166Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.18","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.18/manifests"},{"name":"v1.2.17","sha":"d7c70db9fb5a3cd5e98f7c0c76b6fc4180614c07","kind":"commit","published_at":"2022-03-11T19:39:37.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.17","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.17","dependencies_parsed_at":"2023-05-30T16:40:41.385Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.17","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.17/manifests"},{"name":"v1.2.16","sha":"b4e6e303cd6ca495529db7d187fa2adc9684e422","kind":"commit","published_at":"2022-03-11T19:28:43.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.16","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.16","dependencies_parsed_at":"2023-05-30T16:40:41.667Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.16","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.16/manifests"},{"name":"v1.2.15","sha":"1b249572cc8ac4097121175bdc98bb7239318af7","kind":"commit","published_at":"2022-03-11T19:23:28.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.15","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.15","dependencies_parsed_at":"2023-05-30T16:40:41.906Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.15","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.15/manifests"},{"name":"v1.2.13","sha":"aca601fbf0b6ac564d17610e50886069dd36af48","kind":"commit","published_at":"2022-03-11T19:18:25.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.13","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.13","dependencies_parsed_at":"2023-05-30T16:40:42.187Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.13","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.13/manifests"},{"name":"v1.2.12","sha":"830768b14dbd86d10a7f374296b8c49682d5f3fd","kind":"commit","published_at":"2022-03-11T19:09:54.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.12","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.12","dependencies_parsed_at":"2023-05-30T16:40:42.452Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.12","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.12/manifests"},{"name":"v1.2.11","sha":"40f1ba2f565b099702e209d0b0df8c7191ceff78","kind":"commit","published_at":"2022-03-11T19:00:59.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.11","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.11","dependencies_parsed_at":"2023-05-30T16:40:42.688Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.11","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.11/manifests"},{"name":"v1.2.10","sha":"349ae1c35ffb335a9b0ea4086869599258fc815d","kind":"commit","published_at":"2022-03-11T18:54:36.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.10","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.10","dependencies_parsed_at":"2023-05-30T16:40:42.940Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.10","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.10/manifests"},{"name":"v1.2.9","sha":"d854503bdaee649d77da7e9e48f9e904632be8c4","kind":"commit","published_at":"2022-03-11T18:44:41.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.9","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.9","dependencies_parsed_at":"2023-05-30T16:40:43.192Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.9/manifests"},{"name":"v1.2.8","sha":"9d9c4394abc8e4a13ef5dd515b422a1c5c4508ef","kind":"commit","published_at":"2022-03-11T18:38:55.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.8","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.8","dependencies_parsed_at":"2023-05-30T16:40:43.428Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.8/manifests"},{"name":"v1.2.7","sha":"9a4a979fe9a48b76d64cabb25e2a317bc0f407d6","kind":"commit","published_at":"2022-03-11T18:37:17.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.7","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.7","dependencies_parsed_at":"2023-05-30T16:40:43.727Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.7/manifests"},{"name":"v1.2.6","sha":"d1a9d7ed96726fb2947a2716ff71bac6d14f05bd","kind":"commit","published_at":"2022-03-11T18:27:37.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.6","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.6","dependencies_parsed_at":"2023-05-30T16:40:43.975Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.6/manifests"},{"name":"v1.2.5","sha":"b637e351a11bb0e8db4cd727078192e0ca6cacdf","kind":"commit","published_at":"2022-03-11T18:21:32.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.5","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.5","dependencies_parsed_at":"2023-05-30T16:40:44.222Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.5/manifests"},{"name":"v1.2.4","sha":"5816f220b40fb8b855f78e5aa6f72e2e5ccc6b85","kind":"commit","published_at":"2022-03-11T18:11:21.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.4","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.4","dependencies_parsed_at":"2023-05-30T16:40:44.517Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.4/manifests"},{"name":"v1.2.3","sha":"dab312329e44938ea226bc038063357719c2e2a3","kind":"commit","published_at":"2022-03-11T18:08:44.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.3","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.3","dependencies_parsed_at":"2023-05-30T16:40:44.773Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.3/manifests"},{"name":"v1.2.2","sha":"141c9abe05f5a03367e72c59b2bdf7baeda4819c","kind":"commit","published_at":"2022-03-11T18:03:43.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.2","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.2","dependencies_parsed_at":"2023-05-30T16:40:44.995Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.2/manifests"},{"name":"v1.2.1","sha":"33dcd386f74838e6c9544b155211bff4cf69fb69","kind":"commit","published_at":"2022-03-11T17:58:41.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.1","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.1","dependencies_parsed_at":"2023-05-30T16:40:45.294Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.1/manifests"},{"name":"v1.2.0","sha":"27ca7e45ac97fc4beb9db4f08607bfe70a543387","kind":"commit","published_at":"2022-03-11T17:50:13.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.2.0","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.2.0","dependencies_parsed_at":"2023-05-30T16:40:45.516Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.2.0/manifests"},{"name":"v1.1.1","sha":"b3aa9239132edeb040d3e27899ceb2bc4d5700d7","kind":"commit","published_at":"2022-03-10T20:57:51.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.1.1","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.1.1","dependencies_parsed_at":"2023-05-30T16:40:45.804Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.1.1/manifests"},{"name":"v1.0.20","sha":"9c12c3f4e1cc1da2d9fe0bd74f21fdf03ca3c70c","kind":"commit","published_at":"2022-03-09T22:01:55.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.20","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.20","dependencies_parsed_at":"2023-05-30T16:40:46.223Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.20","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.20/manifests"},{"name":"v1.0.19","sha":"b4f0ef66258b6dc7ad2c7b2dd93be47240038096","kind":"commit","published_at":"2022-03-09T21:53:30.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.19","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.19","dependencies_parsed_at":"2023-05-30T16:40:46.462Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.19","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.19/manifests"},{"name":"v1.0.18","sha":"2770ad087d80eaa5c1d6c80f60391b17b6b67ccb","kind":"commit","published_at":"2022-03-09T21:51:53.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.18","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.18","dependencies_parsed_at":"2023-05-30T16:40:46.732Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.18","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.18/manifests"},{"name":"v1.0.17","sha":"5d763b023ba6f836e88d46dc6033695a67216477","kind":"commit","published_at":"2022-03-09T21:48:16.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.17","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.17","dependencies_parsed_at":"2023-05-30T16:40:47.024Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.17","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.17/manifests"},{"name":"v1.0.16","sha":"dec545ea474b710b95a57b60cd6e74e30f4452be","kind":"commit","published_at":"2022-03-09T21:39:32.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.16","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.16","dependencies_parsed_at":"2023-05-30T16:40:47.275Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.16","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.16/manifests"},{"name":"v1.0.15","sha":"0c55fbcb48078d3b571fd2c59918482f7f6892cb","kind":"commit","published_at":"2022-03-09T21:33:36.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.15","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.15","dependencies_parsed_at":"2023-05-30T16:40:47.515Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.15","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.15/manifests"},{"name":"v1.0.14","sha":"79f7fa7611f715233fa5d0d734464e9d5c89981e","kind":"commit","published_at":"2022-03-09T21:26:59.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.14","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.14","dependencies_parsed_at":"2023-05-30T16:40:47.742Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.14","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.14/manifests"},{"name":"v1.0.13","sha":"21e3335660f7e3b42ea9fa17d0d364e892651dc5","kind":"commit","published_at":"2022-03-09T21:23:42.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.13","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.13","dependencies_parsed_at":"2023-05-30T16:40:48.006Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.13","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.13/manifests"},{"name":"v1.0.12","sha":"e04afa7c6069930db1c283d7f47e7be96099cbbf","kind":"commit","published_at":"2022-03-09T21:14:47.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.12","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.12","dependencies_parsed_at":"2023-05-30T16:40:48.297Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.12","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.12/manifests"},{"name":"v1.0.11","sha":"3d339572ce81edaefc42e851555452ff8c02ff14","kind":"commit","published_at":"2022-03-09T20:51:41.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.11","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.11","dependencies_parsed_at":"2023-05-30T16:40:48.446Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.11","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.11/manifests"},{"name":"v1.0.10","sha":"f9824475a42bc2e5c402e9411a8e118e88d0c8bf","kind":"commit","published_at":"2022-03-09T20:45:27.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.10","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.10","dependencies_parsed_at":"2023-05-30T16:40:48.634Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.10","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.10/manifests"},{"name":"v1.0.9","sha":"f9ab8100ea434c55353f9117ae17690edcfa959c","kind":"commit","published_at":"2022-03-09T20:21:21.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.9","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.9","dependencies_parsed_at":"2023-05-30T16:40:48.787Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.9/manifests"},{"name":"v1.0.8","sha":"bcdcbb3c412372dc8ae72da7662d0eb79f5787fd","kind":"commit","published_at":"2022-03-09T20:16:07.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.8","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.8","dependencies_parsed_at":"2023-05-30T16:40:48.941Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.8/manifests"},{"name":"v1.0.7","sha":"93facfed88e4001d00248acb8d824ec8add8cb30","kind":"commit","published_at":"2022-03-09T20:09:43.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.7","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.7","dependencies_parsed_at":"2023-05-30T16:40:49.092Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.7/manifests"},{"name":"v1.07","sha":"93facfed88e4001d00248acb8d824ec8add8cb30","kind":"commit","published_at":"2022-03-09T20:09:43.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.07","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.07","dependencies_parsed_at":"2023-05-30T16:40:45.999Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.07","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.07/manifests"},{"name":"v1.0.6","sha":"343a6c76b5e7e6ebc11c09db8601ebedfdd3fc6d","kind":"commit","published_at":"2022-03-09T20:06:10.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.6","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.6","dependencies_parsed_at":"2023-05-30T16:40:49.255Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.6/manifests"},{"name":"v1.0.5","sha":"4733829427d6e3625aec5cc443ff2175274ff785","kind":"commit","published_at":"2022-03-09T20:02:52.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.5","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.5","dependencies_parsed_at":"2023-05-30T16:40:49.446Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.5/manifests"},{"name":"v1.0.4","sha":"c599bfc73358c4c35aa939fd877e69e410ac9515","kind":"commit","published_at":"2022-03-09T20:01:18.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.4","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.4","dependencies_parsed_at":"2023-05-30T16:40:49.608Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.4/manifests"},{"name":"v1.0.3","sha":"4cfa46b24860c5c45adc8f47b9fe1b68c9e2f7dd","kind":"commit","published_at":"2022-03-09T19:50:49.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.3","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.3","dependencies_parsed_at":"2023-05-30T16:40:49.775Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.3/manifests"},{"name":"v1.0.2","sha":"0b204f410ace7c51d9233c2be9399f42085a2c3d","kind":"commit","published_at":"2022-03-09T19:39:18.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.2","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.2","dependencies_parsed_at":"2023-05-30T16:40:49.936Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.2/manifests"},{"name":"v1.0.1","sha":"5d31dd49388c0fcbb06d3589434554dbdcd2c132","kind":"commit","published_at":"2022-03-09T18:46:47.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.1","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.1","dependencies_parsed_at":"2023-05-30T16:40:50.103Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.1/manifests"},{"name":"v1.0.0","sha":"2dbf392447e74c233d4ab369dcb08fc02ef1a6a4","kind":"commit","published_at":"2022-03-09T18:05:48.000Z","download_url":"https://codeload.github.com/a11ywatch/github-actions/tar.gz/v1.0.0","html_url":"https://github.com/a11ywatch/github-actions/releases/tag/v1.0.0","dependencies_parsed_at":"2023-05-30T16:40:50.324Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/tags/v1.0.0/manifests"}]},"repo_metadata_updated_at":"2024-02-24T00:40:14.833Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":1,"rankings":{"downloads":null,"dependent_repos_count":24.756773886864206,"dependent_packages_count":0.0,"stargazers_count":8.6895896054508,"forks_count":16.12422753921724,"docker_downloads_count":null,"average":12.392647757883061},"purl":"pkg:githubactions/a11ywatch/github-actions","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/a11ywatch/github-actions","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/a11ywatch/github-actions","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/a11ywatch/github-actions/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2023-11-30T01:35:38.021Z","issues_count":9,"pull_requests_count":46,"avg_time_to_close_issue":1428143.25,"avg_time_to_close_pull_request":207414.02173913043,"issues_closed_count":8,"pull_requests_closed_count":46,"pull_request_authors_count":3,"issue_authors_count":5,"avg_comments_per_issue":2.888888888888889,"avg_comments_per_pull_request":4.6521739130434785,"merged_pull_requests_count":34,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":4,"past_year_pull_requests_count":13,"past_year_avg_time_to_close_issue":57880.333333333336,"past_year_avg_time_to_close_pull_request":13773.615384615385,"past_year_issues_closed_count":3,"past_year_pull_requests_closed_count":13,"past_year_pull_request_authors_count":2,"past_year_issue_authors_count":4,"past_year_avg_comments_per_issue":5.5,"past_year_avg_comments_per_pull_request":3.0,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":10,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/a11ywatch%2Fgithub-actions/issues"},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/a11ywatch%2Fgithub-actions/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/a11ywatch%2Fgithub-actions/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/a11ywatch%2Fgithub-actions/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/a11ywatch%2Fgithub-actions/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/a11ywatch%2Fgithub-actions/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/a11ywatch%2Fgithub-actions/codemeta","maintainers":[]}