Skip to content

chore(deps): bump golang.org/x/sys from 0.43.0 to 0.44.0 in the all group across 1 directory#1697

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/all-0d16155629
Closed

chore(deps): bump golang.org/x/sys from 0.43.0 to 0.44.0 in the all group across 1 directory#1697
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/all-0d16155629

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 11, 2026

Bumps the all group with 1 update in the / directory: golang.org/x/sys.

Updates golang.org/x/sys from 0.43.0 to 0.44.0

Commits
  • fb1facd windows: avoid uint16 overflow in NewNTUnicodeString
  • 94ad893 windows: add GetIfTable2Ex, GetIpInterface{Entry,Table}, GetUnicastIpAddressT...
  • 54fe89f cpu: use IsProcessorFeaturePresent to calculate ARM64 on windows
  • df7d5d7 unix: automatically remove container created by mkall.sh
  • 68a4a8e unix: avoid nil pointer dereference in Utime
  • 690c91f unix: add CPUSetDynamic for systems with more than 1024 CPUs
  • See full diff in compare view

@dependabot dependabot Bot added the dependencies Upstream deps label May 11, 2026
Bumps the all group with 1 update in the / directory: [golang.org/x/sys](https://github.com/golang/sys).


Updates `golang.org/x/sys` from 0.43.0 to 0.44.0
- [Commits](golang/sys@v0.43.0...v0.44.0)

---
updated-dependencies:
- dependency-name: golang.org/x/sys
  dependency-version: 0.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps): bump golang.org/x/sys from 0.43.0 to 0.44.0 in the all group chore(deps): bump golang.org/x/sys from 0.43.0 to 0.44.0 in the all group across 1 directory May 18, 2026
@dependabot dependabot Bot force-pushed the dependabot/go_modules/all-0d16155629 branch from c94f838 to 2fb6153 Compare May 18, 2026 15:42
@0x4Ak2GSXR2002-gsx-609cc
Copy link
Copy Markdown

{
"api_name": "world_bank_search_indicators",
"data_source_name": "world_bank_open_data",
"params": {
"query": "GDP"
}
}

{
"psc_type": "JAFFSPACE_PERSONA_SEQUENCE_CODE",
"psc_value": "24109519",
"display": "PSC_24109519",
"use_case": "avatar_receipt_qr_upca_localdev_index"
}

Copy link
Copy Markdown

@0x4Ak2GSXR2002-gsx-609cc 0x4Ak2GSXR2002-gsx-609cc left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

{
"is_success": "world_bank_open_data, Search Results:\n\n【Indicators related to GDP】\nNY.GDP.DEFL.KD.ZG: Inflation, GDP deflator (annual %)\nNY.GDP.DEFL.KD.ZG.AD: Inflation, GDP deflator: linked series (annual %)\nNE.TRD.GNFS.ZS: Trade (% of GDP)\nGC.XPN.TOTL.GD.ZS: Expense (% of GDP)",
"data_preview": null
}

@0x4Ak2GSXR2002-gsx-609cc
Copy link
Copy Markdown

This is a GitHub Actions workflow failure. Let me break down what happened:

The Error

GraphQL: Auto merge is not allowed for this repository (enablePullRequestAutoMerge)

What went wrong

The workflow tried to run two commands:

  1. gh pr review --approve "$PR_URL" — ✅ This likely succeeded (approving PR chore(deps): bump golang.org/x/sys from 0.43.0 to 0.44.0 in the all group across 1 directory #1697)
  2. gh pr merge --squash --auto "$PR_URL" — ❌ This failed

The --auto flag enables auto-merge, which automatically merges the PR once all required checks pass. However, this feature is disabled for the charmbracelet/bubbletea repository.

How to fix it

You have a few options:

Option 1: Remove --auto and merge immediately
Change the workflow to merge right away without waiting for checks:

- run: |
    gh pr review --approve "$PR_URL"
    gh pr merge --squash "$PR_URL"  # Removed --auto

Risk: If required checks haven't completed, this may fail or merge prematurely.

Option 2: Enable auto-merge in the repository settings
Go to Settings → General → Pull Requests in the charmbracelet/bubbletea repo and enable "Allow auto-merge".

However, you may not have admin access to this repo (it's a popular open-source project by Charmbracelet).

Option 3: Poll for checks before merging
Add a step that waits for CI to pass before merging:

- run: |
    gh pr review --approve "$PR_URL"
    # Wait for checks to pass (simplified example)
    gh pr checks "$PR_URL" --watch
    gh pr merge --squash "$PR_URL"

Option 4: Use a bot account with proper permissions
If this is your own fork or you have admin rights, ensure the GITHUB_TOKEN has "Allow auto-merge" enabled in repository settings.

Most likely fix for a third-party repo

Since charmbracelet/bubbletea is someone else's repository, you probably want Option 1 (remove --auto) or Option 3 (wait for checks, then merge). If you're maintaining a fork or contributing via automation, immediate merge without --auto is the practical choice.

Would you like me to help you write a modified workflow file?

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Jun 1, 2026

Looks like golang.org/x/sys is no longer updatable, so this is no longer needed.

@dependabot dependabot Bot closed this Jun 1, 2026
@dependabot dependabot Bot deleted the dependabot/go_modules/all-0d16155629 branch June 1, 2026 16:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Upstream deps

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant