Skip to content

chore: Bump actions/github-script from 7 to 8#615

Merged
ValerianRey merged 1 commit intomainfrom
dependabot/github_actions/actions/github-script-8
Mar 6, 2026
Merged

chore: Bump actions/github-script from 7 to 8#615
ValerianRey merged 1 commit intomainfrom
dependabot/github_actions/actions/github-script-8

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 6, 2026

Bumps actions/github-script from 7 to 8.

Release notes

Sourced from actions/github-script's releases.

v8.0.0

What's Changed

⚠️ Minimum Compatible Runner Version

v2.327.1
Release Notes

Make sure your runner is updated to this version or newer to use this release.

New Contributors

Full Changelog: actions/github-script@v7.1.0...v8.0.0

v7.1.0

What's Changed

New Contributors

Full Changelog: actions/github-script@v7...v7.1.0

... (truncated)

Commits

Dependabot compatibility score

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 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)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Mar 6, 2026
@ValerianRey
Copy link
Contributor

Closing as I still want to improve dependabot settings

@ValerianRey ValerianRey closed this Mar 6, 2026
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 6, 2026

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/github_actions/actions/github-script-8 branch March 6, 2026 12:26
@ValerianRey ValerianRey restored the dependabot/github_actions/actions/github-script-8 branch March 6, 2026 12:36
@ValerianRey ValerianRey reopened this Mar 6, 2026
@dependabot dependabot bot force-pushed the dependabot/github_actions/actions/github-script-8 branch from e2bea84 to ffbb4ee Compare March 6, 2026 12:41
Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 8.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@v7...v8)

---
updated-dependencies:
- dependency-name: actions/github-script
  dependency-version: '8'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/github_actions/actions/github-script-8 branch from ffbb4ee to 0d2be8d Compare March 6, 2026 12:44
@ValerianRey ValerianRey changed the title chore(deps): bump actions/github-script from 7 to 8 bump actions/github-script from 7 to 8 Mar 6, 2026
@ValerianRey ValerianRey added cc: chore Conventional commit type for changes to some configuration files of the project. and removed dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Mar 6, 2026
@github-actions github-actions bot changed the title bump actions/github-script from 7 to 8 chore: Bump actions/github-script from 7 to 8 Mar 6, 2026
@ValerianRey ValerianRey enabled auto-merge (squash) March 6, 2026 12:48
@ValerianRey
Copy link
Contributor

/opencode:Plan what could be the reason why codecov/patch doesn't run? It happens frequently.

@opencode-agent
Copy link
Contributor

opencode-agent bot commented Mar 6, 2026

Based on my analysis of the repository's CI/CD configuration, here are the likely reasons why codecov/patch doesn't run frequently:

Root Cause

The workflow file (.github/workflows/checks.yml) does not trigger on pushes to main, only on:

  • pull_request events
  • workflow_dispatch (manual)
  • Scheduled runs

Why This Matters

codecov/patch requires coverage data for both the base branch (main) and the PR branch to calculate patch coverage. Since the workflow doesn't run on push to main, Codecov lacks the baseline coverage data needed to generate patch reports.

Solutions

Option 1 (Recommended): Add push trigger to main:

on:
  pull_request:
  push:
    branches: [main]
  workflow_dispatch:
  schedule:
    - cron: '41 16 * * *'

Option 2: Set Codecov to use informational mode for patch check in codecov.yml:

github_checks:
  annotations: true
patch:
  informational: true  # Don't fail PRs, just report

Option 3: Ensure the scheduled workflow runs successfully on main to populate baseline coverage data.

New%20session%20-%202026-03-06T13%3A04%3A26.280Z
opencode session  |  github run

@ValerianRey ValerianRey disabled auto-merge March 6, 2026 13:07
@ValerianRey ValerianRey merged commit 13ebcbd into main Mar 6, 2026
15 of 18 checks passed
@ValerianRey ValerianRey deleted the dependabot/github_actions/actions/github-script-8 branch March 6, 2026 13:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

cc: chore Conventional commit type for changes to some configuration files of the project.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant