Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Bump tar-fs and accessibility-checker in /accessibility-checker-extension #2237

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 28, 2025

Bumps tar-fs to 3.0.8 and updates ancestor dependency accessibility-checker. These dependencies need to be updated together.

Updates tar-fs from 2.1.1 to 3.0.8

Commits

Updates accessibility-checker from 3.1.62 to 4.0.3

Release notes

Sourced from accessibility-checker's releases.

March 27, 2025 (v4.x)

What's Changed

Rules and Engine

  • fixrule (input_label_visible): Fix issues related to visible text on an input element by @​shunguoy in IBMa/equal-access#2213
  • fixrule(element_scrollable_tabbable, element_tabbable_role_valid, text_contrast_sufficient): Issues related to scrolling, tabbing, and disabled controls by @​shunguoy in IBMa/equal-access#2221
  • fixrule(element_scrollable_tabbable, element_tabbable_role_valid, text_contrast_sufficient): Issues related to scrolling, tabbing, and disabled controls (v4.x) by @​shunguoy in IBMa/equal-access#2222
  • fixrule(element_scrollable_tabbable, aria_child_tabbable, element_tabbable_role_valid): Fix combobox tabbable descendent error by @​shunguoy in IBMa/equal-access#2232
  • fixrule(element_scrollable_tabbable, aria_child_tabbable, element_tabbable_role_valid): Fix combobox tabbable descendent error (v4.x) by @​shunguoy in IBMa/equal-access#2233

CI/CD packages

Chores and dependencies

Full Changelog: 4.0.2...4.0.3

February 27, 2025 - hotfix (v4.x)

Appears the 4.0.1 release was created from the wrong branch and therefore has the wrong dependencies.

Full Changelog: 4.0.0...4.0.2

February 18, 2025 - hotfix (v4.x)

What's Changed

Full Changelog: 4.0.0...4.0.1

February 10, 2025 (4.x)

This is an update of the 4.x branch from changes already made to the 3.x branch

What's Changed

Rules and Engine

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [tar-fs](https://github.com/mafintosh/tar-fs) to 3.0.8 and updates ancestor dependency [accessibility-checker](https://github.com/IBMa/equal-access). These dependencies need to be updated together.


Updates `tar-fs` from 2.1.1 to 3.0.8
- [Commits](mafintosh/tar-fs@v2.1.1...v3.0.8)

Updates `accessibility-checker` from 3.1.62 to 4.0.3
- [Release notes](https://github.com/IBMa/equal-access/releases)
- [Changelog](https://github.com/IBMa/equal-access/blob/master/CHANGELOG.md)
- [Commits](3.1.62...4.0.3)

---
updated-dependencies:
- dependency-name: tar-fs
  dependency-type: indirect
- dependency-name: accessibility-checker
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 28, 2025
@philljenkins
Copy link
Contributor

@tombrunet GitHub AI's explanation of the issue and how to resolve:

The job is failing due to authentication issues with IBM Cloud. Specifically, the error indicates that the API key is missing or empty, and the job cannot authenticate to IBM Cloud services. Here's how to resolve this issue:

Solution

  1. Add the Missing API Key:
  • Ensure that the API key for IBM Cloud is correctly set up as a secret in the repository.
  • Go to the repository settings -> Secrets and variables -> Actions -> Add a new secret.
  • Add a secret named IBM_CLOUD_API_KEY (or whatever name matches the configuration in your workflow).
  1. Update the Workflow File:
  • Modify the workflow file .github/workflows/test.yml to include the secret in the authentication step. For example:
YAML
steps:
  - name: Authenticate to IBM Cloud
    run: |
      ibmcloud login --apikey ${{ secrets.IBM_CLOUD_API_KEY }}
  1. Verify the Keyserver Configuration:
  • The logs also show that some keys fail to fetch from hkps://keys.openpgp.org. Update the keyserver to ensure proper fetching:
bash
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys <key-id>
  1. Test the Solution:
  • Rerun the job after making the changes to verify the fix.

These steps should resolve the authentication issue and allow the job to proceed successfully.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant