Skip to content

chore(deps): update github actions (major) - #898

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-github-actions
Open

chore(deps): update github actions (major)#898
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-github-actions

Conversation

@renovate

@renovate renovate Bot commented Feb 26, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
actions/cache action major v5.0.3v6.1.0
actions/checkout action major v6.0.2v7.0.1
actions/download-artifact action major v7.0.0v8.0.1
actions/setup-python action major v6.2.0v7.0.0
actions/upload-artifact action major v6.0.0v7.0.1
codecov/codecov-action action major v5.5.2v7.0.0
conda-incubator/setup-miniconda action major v3.3.0v4.0.1
mamba-org/setup-micromamba action major v2.0.7v3.1.0

Release Notes

actions/cache (actions/cache)

v6.1.0

Compare Source

What's Changed

Full Changelog: actions/cache@v6...v6.1.0

v6.0.0

Compare Source

What's Changed

Full Changelog: actions/cache@v5...v6.0.0

v6

Compare Source

v5.1.0

Compare Source

What's Changed

Full Changelog: actions/cache@v5...v5.1.0

v5.0.5

Compare Source

What's Changed

Full Changelog: actions/cache@v5...v5.0.5

v5.0.4

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v5...v5.0.4

actions/checkout (actions/checkout)

v7.0.1

Compare Source

v7.0.0

Compare Source

v7

Compare Source

v6.1.0

Compare Source

v6.0.3

Compare Source

actions/download-artifact (actions/download-artifact)

v8.0.1

Compare Source

What's Changed

Full Changelog: actions/download-artifact@v8...v8.0.1

v8.0.0

Compare Source

v8 - What's new

[!IMPORTANT]
actions/download-artifact@​v8 has been migrated to an ESM module. This should be transparent to the caller but forks might need to make significant changes.

[!IMPORTANT]
Hash mismatches will now error by default. Users can override this behavior with a setting change (see below).

Direct downloads

To support direct uploads in actions/upload-artifact, the action will no longer attempt to unzip all downloaded files. Instead, the action checks the Content-Type header ahead of unzipping and skips non-zipped files. Callers wishing to download a zipped file as-is can also set the new skip-decompress parameter to true.

Enforced checks (breaking)

A previous release introduced digest checks on the download. If a download hash didn't match the expected hash from the server, the action would log a warning. Callers can now configure the behavior on mismatch with the digest-mismatch parameter. To be secure by default, we are now defaulting the behavior to error which will fail the workflow run.

ESM

To support new versions of the @​actions/* packages, we've upgraded the package to ESM.

What's Changed

Full Changelog: actions/download-artifact@v7...v8.0.0

v8

Compare Source

actions/setup-python (actions/setup-python)

v7.0.0

Compare Source

v7

Compare Source

v6.3.0

Compare Source

What's Changed
Enhancement
Dependency update
Documentation
New Contributors

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

actions/upload-artifact (actions/upload-artifact)

v7.0.1

Compare Source

What's Changed

Full Changelog: actions/upload-artifact@v7...v7.0.1

v7.0.0

Compare Source

v7 What's new

Direct Uploads

Adds support for uploading single files directly (unzipped). Callers can set the new archive parameter to false to skip zipping the file during upload. Right now, we only support single files. The action will fail if the glob passed resolves to multiple files. The name parameter is also ignored with this setting. Instead, the name of the artifact will be the name of the uploaded file.

ESM

To support new versions of the @actions/* packages, we've upgraded the package to ESM.

What's Changed

New Contributors

Full Changelog: actions/upload-artifact@v6...v7.0.0

v7

Compare Source

codecov/codecov-action (codecov/codecov-action)

v7.0.0

Compare Source

⚠️ Due to migration issues with keybase, we are unable to update our keys under the codecovsecurity account. We have deleted the account and are using codecovsecops with the original gpg key

What's Changed

Full Changelog: codecov/codecov-action@v6.0.1...v7.0.0

v7

Compare Source

v6.0.2

Compare Source

This is a copy of the v7.0.0 release to make updates easier

What's Changed

Full Changelog: codecov/codecov-action@v6.0.1...v6.0.2

v6.0.1

Compare Source

What's Changed

Full Changelog: codecov/codecov-action@v6.0.0...v6.0.1

v6.0.0

Compare Source

⚠️ This version introduces support for node24 which make cause breaking changes for systems that do not currently support node24. ⚠️
What's Changed

Full Changelog: codecov/codecov-action@v5.5.4...v6.0.0

v6

Compare Source

v5.5.5

Compare Source

This release only contains the keybase.io change as described here.

Full Changelog: codecov/codecov-action@v5.5.4...v5.5.5

v5.5.4

Compare Source

This is a mirror of v5.5.2. v6 will be released which requires node24

What's Changed

Full Changelog: codecov/codecov-action@v5.5.3...v5.5.4

v5.5.3

Compare Source

What's Changed

Full Changelog: codecov/codecov-action@v5.5.2...v5.5.3

conda-incubator/setup-miniconda (conda-incubator/setup-miniconda)

v4.0.1

Compare Source

Fixes
  • Fix MultipleKeysError on conda 25.11+ when a user-supplied condarc-file
    already declares auto_activate: now only one of auto_activate /
    auto_activate_base is written to .condarc, preferring whichever key the
    user's existing condarc uses.
  • Add auto_activate to the boolean coercion set so its value is serialized as
    a YAML boolean when it is the chosen canonical key.
  • Add local_repodata_ttl to KNOWN_CONDARC_KEYS to silence a spurious
    "Unrecognized condarc key" warning for a valid conda key.

v4.0.0

Compare Source

Breaking Changes
  • #​459: Upgrade action runtime to Node.js 24.x (requires runners with
    Node 24 support; this is the reason for the v4 major bump)
  • #​450: Switch action build to ESM (for @actions/exec v3)
Features and Enhancements
  • #​469: Add conda-init input to optionally skip conda init and
    document activation for restricted environments
  • #​482: Add channels parsing utility and URL validation
  • #​481: Enable stricter TypeScript checks and typing
  • #​480: Add more tests, increase coverage, add Codecov integration and
    coverage badge
  • #​479: Add TypeDoc-based API docs, generation and checks; configure
    GitHub Pages and Netlify previews
Fixes
  • #​465: Fix double channel configuration being applied
  • #​467: Speed up Windows post-run cleanup by moving the extracted
    packages directory instead of removing files one by one
  • #​470: Fix name-version-build syntax expansion and add tests
  • #​475: Split shell init and activation of the test environment to remove
    spurious warning
Performance
  • #​486: Remove HTML index scraping for Miniconda version validation
  • #​487: Parallelize Windows takeown calls with Promise.all
  • #​488: Replace isDefaultEnvironment subprocess with local YAML reads
  • #​489: Replace conda config subprocesses with direct .condarc YAML
    writes
Tasks and Maintenance

v4

Compare Source

Fixes
  • Fix MultipleKeysError on conda 25.11+ when a user-supplied condarc-file
    already declares auto_activate: now only one of auto_activate /
    auto_activate_base is written to .condarc, preferring whichever key the
    user's existing condarc uses.
  • Add auto_activate to the boolean coercion set so its value is serialized as
    a YAML boolean when it is the chosen canonical key.
  • Add local_repodata_ttl to KNOWN_CONDARC_KEYS to silence a spurious
    "Unrecognized condarc key" warning for a valid conda key.
mamba-org/setup-micromamba (mamba-org/setup-micromamba)

v3.1.0

Compare Source

What's Changed
New features
Documentation
Dependency updates
New Contributors

Full Changelog: mamba-org/setup-micromamba@v3.0.0...v3.1.0

v3.0.0

Compare Source

What's Changed
New features
Dependency updates
Other changes
New Contributors

Full Changelog: mamba-org/setup-micromamba@v2...v3.0.0

v3

Compare Source


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot requested a review from a team as a code owner February 26, 2026 18:52
@netlify

netlify Bot commented Feb 26, 2026

Copy link
Copy Markdown

Deploy Preview for conda-lock ready!

Name Link
🔨 Latest commit 80a96fb
🔍 Latest deploy log https://app.netlify.com/projects/conda-lock/deploys/6a634cc47b96ad000818728f
😎 Deploy Preview https://deploy-preview-898--conda-lock.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@renovate
renovate Bot force-pushed the renovate/major-github-actions branch from dfe59d4 to 77dc3eb Compare March 11, 2026 18:13
@renovate
renovate Bot force-pushed the renovate/major-github-actions branch 2 times, most recently from 9720619 to 3f74158 Compare March 27, 2026 02:14
@renovate renovate Bot changed the title chore(deps): update github actions (major) Update GitHub Actions (major) Apr 8, 2026
@renovate
renovate Bot force-pushed the renovate/major-github-actions branch from 3f74158 to 125df93 Compare April 10, 2026 18:06
@renovate renovate Bot changed the title Update GitHub Actions (major) chore(deps): update github actions (major) Apr 11, 2026
@renovate
renovate Bot force-pushed the renovate/major-github-actions branch from 125df93 to 9e28c73 Compare April 15, 2026 18:57
@renovate
renovate Bot force-pushed the renovate/major-github-actions branch 2 times, most recently from ba31277 to 9040bf5 Compare April 24, 2026 15:52
@renovate
renovate Bot force-pushed the renovate/major-github-actions branch 2 times, most recently from 644b699 to 9f22748 Compare May 19, 2026 00:26
@renovate
renovate Bot force-pushed the renovate/major-github-actions branch from 9f22748 to d94c5ab Compare May 22, 2026 19:44
@renovate
renovate Bot force-pushed the renovate/major-github-actions branch from d94c5ab to cf5063f Compare June 7, 2026 01:54
@renovate
renovate Bot force-pushed the renovate/major-github-actions branch 2 times, most recently from a3c0f64 to 0772cf1 Compare June 23, 2026 18:00
@renovate
renovate Bot force-pushed the renovate/major-github-actions branch from 0772cf1 to 2fac221 Compare June 26, 2026 23:11
@renovate
renovate Bot force-pushed the renovate/major-github-actions branch 2 times, most recently from bc86e1d to bd9fdaa Compare July 13, 2026 17:12
@renovate
renovate Bot force-pushed the renovate/major-github-actions branch 2 times, most recently from f766920 to 2f3d757 Compare July 20, 2026 16:39
@renovate
renovate Bot force-pushed the renovate/major-github-actions branch from 2f3d757 to 80a96fb Compare July 24, 2026 11:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants