Skip to content

Bump the actions group in /.github/workflows with 4 updates#557

Merged
braingram merged 2 commits into
mainfrom
dependabot/github_actions/dot-github/workflows/main/actions-014da7dd89
Jul 8, 2026
Merged

Bump the actions group in /.github/workflows with 4 updates#557
braingram merged 2 commits into
mainfrom
dependabot/github_actions/dot-github/workflows/main/actions-014da7dd89

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the actions group in /.github/workflows with 4 updates: OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml, actions/setup-python, actions/checkout and OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml.

Updates OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml from 2.6.3 to 3.0.1

Release notes

Sourced from OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml's releases.

v3.0.1

What's Changed

Full Changelog: OpenAstronomy/github-actions-workflows@v3.0.0...v3.0.1

v3.0.0

Breaking Changes

  • If a value is provided for coverage uploading (coverage: codecov, coverage: codecov-oidc, or coverage: github), tests must end with a .coverage file at the workspace root. Use the COVERAGE_FILE environment variable; for instance, you can set it explicitly in tox.ini. See the relevant section of the docs for more information.
    set_env =
      COVERAGE_FILE={toxinidir}/.coverage
  • The fill:, fill_platforms:, and fill_factors: inputs are now removed in favor of using version glob syntax py3* directly in envs:. For example, to produce the following set of envs:
        envs: |
           - linux: pep8
             pytest: false
           - linux: py311-xdist
           - linux: py312-xdist
           - linux: py313-xdist
           - linux: py314-xdist
           - macos: py311-xdist
           - macos: py312-xdist
           - macos: py313-xdist
           - macos: py314-xdist
    on OpenAstronomy/github-actions-workflows@v2 you would have used fill:, fill_platforms:, and fill_factors::
     uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v2
       with:
         envs: |
           - linux: pep8
             pytest: false
         fill: true
         fill_platforms: linux,macos
         fill_factors: xdist
    but now with OpenAstronomy/github-actions-workflows@v3 you use a py* version glob instead:
     uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v3
       with:
         envs: |
           - linux: pep8

... (truncated)

Commits
  • e5af21e fix bug in passing workflow repo to supported-pythons (#405)
  • 6ae6691 replace fill: parameter with logic to expand py3* glob syntax in envs
  • 8b63a9c DEP: upgrade Github Action dependencies (#398)
  • 8449fec DEP: upgrade cibuildwheel to 4.0.0 (#393)
  • 5d99eb3 Disable codecov comments (#401)
  • a7a7c50 Better Reporting of Coverage Reporting Errors (#399)
  • ade42af Update codecov/codecov-action to 7.0 to fix signature error
  • e113052 Coverage reporting refactor and cleanup (#397)
  • 6a5d787 Do not explicitly specify uv version in calls to setup-uv (#396)
  • 4193751 Bump the actions group across 1 directory with 8 updates (#394)
  • See full diff in compare view

Updates actions/setup-python from 6.2.0 to 6.3.0

Release notes

Sourced from actions/setup-python's releases.

v6.3.0

What's Changed

Enhancement

Dependency update

Documentation

New Contributors

Full Changelog: actions/setup-python@v6...v6.3.0

Commits

Updates actions/checkout from 6.0.2 to 7.0.0

Release notes

Sourced from actions/checkout's releases.

v7.0.0

What's Changed

New Contributors

Full Changelog: actions/checkout@v6.0.3...v7.0.0

v6.0.3

What's Changed

New Contributors

Full Changelog: actions/checkout@v6...v6.0.3

Changelog

Sourced from actions/checkout's changelog.

Changelog

v7.0.0

v6.0.3

v6.0.2

v6.0.1

v6.0.0

v5.0.1

v5.0.0

v4.3.1

v4.3.0

v4.2.2

v4.2.1

... (truncated)

Commits

Updates OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml from 2.6.3 to 3.0.1

Release notes

Sourced from OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml's releases.

v3.0.1

What's Changed

Full Changelog: OpenAstronomy/github-actions-workflows@v3.0.0...v3.0.1

v3.0.0

Breaking Changes

  • If a value is provided for coverage uploading (coverage: codecov, coverage: codecov-oidc, or coverage: github), tests must end with a .coverage file at the workspace root. Use the COVERAGE_FILE environment variable; for instance, you can set it explicitly in tox.ini. See the relevant section of the docs for more information.
    set_env =
      COVERAGE_FILE={toxinidir}/.coverage
  • The fill:, fill_platforms:, and fill_factors: inputs are now removed in favor of using version glob syntax py3* directly in envs:. For example, to produce the following set of envs:
        envs: |
           - linux: pep8
             pytest: false
           - linux: py311-xdist
           - linux: py312-xdist
           - linux: py313-xdist
           - linux: py314-xdist
           - macos: py311-xdist
           - macos: py312-xdist
           - macos: py313-xdist
           - macos: py314-xdist
    on OpenAstronomy/github-actions-workflows@v2 you would have used fill:, fill_platforms:, and fill_factors::
     uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v2
       with:
         envs: |
           - linux: pep8
             pytest: false
         fill: true
         fill_platforms: linux,macos
         fill_factors: xdist
    but now with OpenAstronomy/github-actions-workflows@v3 you use a py* version glob instead:
     uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v3
       with:
         envs: |
           - linux: pep8

... (truncated)

Commits
  • e5af21e fix bug in passing workflow repo to supported-pythons (#405)
  • 6ae6691 replace fill: parameter with logic to expand py3* glob syntax in envs
  • 8b63a9c DEP: upgrade Github Action dependencies (#398)
  • 8449fec DEP: upgrade cibuildwheel to 4.0.0 (#393)
  • 5d99eb3 Disable codecov comments (#401)
  • a7a7c50 Better Reporting of Coverage Reporting Errors (#399)
  • ade42af Update codecov/codecov-action to 7.0 to fix signature error
  • e113052 Coverage reporting refactor and cleanup (#397)
  • 6a5d787 Do not explicitly specify uv version in calls to setup-uv (#396)
  • 4193751 Bump the actions group across 1 directory with 8 updates (#394)
  • See full diff in compare view

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot Bot added automation dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code no-changelog-entry-needed labels Jul 1, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner July 1, 2026 08:46
@dependabot dependabot Bot added automation no-changelog-entry-needed dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Jul 1, 2026
dependabot Bot and others added 2 commits July 8, 2026 11:33
Bumps the actions group in /.github/workflows with 4 updates: [OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml](https://github.com/openastronomy/github-actions-workflows), [actions/setup-python](https://github.com/actions/setup-python), [actions/checkout](https://github.com/actions/checkout) and [OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml](https://github.com/openastronomy/github-actions-workflows).


Updates `OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml` from 2.6.3 to 3.0.1
- [Release notes](https://github.com/openastronomy/github-actions-workflows/releases)
- [Commits](OpenAstronomy/github-actions-workflows@2835f0c...e5af21e)

Updates `actions/setup-python` from 6.2.0 to 6.3.0
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@a309ff8...ece7cb0)

Updates `actions/checkout` from 6.0.2 to 7.0.0
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@de0fac2...9c091bb)

Updates `OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml` from 2.6.3 to 3.0.1
- [Release notes](https://github.com/openastronomy/github-actions-workflows/releases)
- [Commits](OpenAstronomy/github-actions-workflows@2835f0c...e5af21e)

---
updated-dependencies:
- dependency-name: OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml
  dependency-version: 3.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: actions/setup-python
  dependency-version: 6.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions
- dependency-name: actions/checkout
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml
  dependency-version: 3.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <support@github.com>
@braingram
braingram force-pushed the dependabot/github_actions/dot-github/workflows/main/actions-014da7dd89 branch from c70a5fc to 00a3461 Compare July 8, 2026 15:33
@codecov

codecov Bot commented Jul 8, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 89.60%. Comparing base (1c54a3e) to head (00a3461).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #557      +/-   ##
==========================================
- Coverage   91.90%   89.60%   -2.30%     
==========================================
  Files          63       63              
  Lines        8926     8926              
==========================================
- Hits         8203     7998     -205     
- Misses        723      928     +205     

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@braingram
braingram merged commit 30e1a93 into main Jul 8, 2026
25 of 26 checks passed
@braingram
braingram deleted the dependabot/github_actions/dot-github/workflows/main/actions-014da7dd89 branch July 8, 2026 17:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

automation dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code no-changelog-entry-needed

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant