Skip to content

Update all dependencies (major)#283

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

Update all dependencies (major)#283
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-all

Conversation

@renovate

@renovate renovate Bot commented Jan 1, 2024

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
actions/checkout action major v4v7 age adoption passing confidence
actions/checkout action major v3v7 age adoption passing confidence
actions/download-artifact action major v4v8 age adoption passing confidence
actions/setup-node action major v3v6 age adoption passing confidence
actions/upload-artifact action major v4v7 age adoption passing confidence
babel-loader devDependencies major ^9.0.0^10.0.0 age adoption passing confidence
concurrently devDependencies major 7.6.010.0.3 age adoption passing confidence
eslint (source) devDependencies major 8.31.010.6.0 age adoption passing confidence
eslint-config-prettier devDependencies major 8.6.010.1.8 age adoption passing confidence
eslint-plugin-prettier devDependencies major 4.2.15.5.6 age adoption passing confidence
node stage major 1826 age adoption passing confidence
ops (changelog) major ~= 2.17~=3.7 age adoption passing confidence
postcss-cli devDependencies major 10.1.011.0.1 age adoption passing confidence
prettier (source) devDependencies major 2.0.23.9.1 age adoption passing confidence
stylelint (source) devDependencies major 14.16.117.14.0 age adoption passing confidence
stylelint-config-standard-scss devDependencies major ^6.1.0^17.0.0 age adoption passing confidence
stylelint-order devDependencies major 5.0.08.1.1 age adoption passing confidence
ubuntu github-runner major 22.0424.04 age adoption passing confidence
ubuntu final major jammyresolute age adoption passing confidence
ubuntu stage major jammyresolute age adoption passing confidence

Release Notes

actions/checkout (actions/checkout)

v7.0.0

Compare Source

v7

Compare Source

v6.0.3

Compare Source

v6.0.2

Compare Source

v6.0.1

Compare Source

v6.0.0

Compare Source

v6

Compare Source

v5.0.1

Compare Source

v5.0.0

Compare Source

v5

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

v7.0.0

Compare Source

v7 - What's new

[!IMPORTANT]
actions/download-artifact@​v7 now runs on Node.js 24 (runs.using: node24) and requires a minimum Actions Runner version of 2.327.1. If you are using self-hosted runners, ensure they are updated before upgrading.

Node.js 24

This release updates the runtime to Node.js 24. v6 had preliminary support for Node 24, however this action was by default still running on Node.js 20. Now this action by default will run on Node.js 24.

What's Changed

New Contributors

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

v7

Compare Source

v6.0.0

Compare Source

What's Changed

BREAKING CHANGE: this update supports Node v24.x. This is not a breaking change per-se but we're treating it as such.

New Contributors

Full Changelog: actions/download-artifact@v5...v6.0.0

v6

Compare Source

v5.0.0

Compare Source

What's Changed

v5.0.0

🚨 Breaking Change

This release fixes an inconsistency in path behavior for single artifact downloads by ID. If you're downloading single artifacts by ID, the output path may change.

What Changed

Previously, single artifact downloads behaved differently depending on how you specified the artifact:

  • By name: name: my-artifact → extracted to path/ (direct)
  • By ID: artifact-ids: 12345 → extracted to path/my-artifact/ (nested)

Now both methods are consistent:

  • By name: name: my-artifact → extracted to path/ (unchanged)
  • By ID: artifact-ids: 12345 → extracted to path/ (fixed - now direct)
Migration Guide
✅ No Action Needed If:
  • You download artifacts by name
  • You download multiple artifacts by ID
  • You already use merge-multiple: true as a workaround
⚠️ Action Required If:

You download single artifacts by ID and your workflows expect the nested directory structure.

Before v5 (nested structure):

- uses: actions/download-artifact@v4
  with:
    artifact-ids: 12345
    path: dist

# Files were in: dist/my-artifact/

Where my-artifact is the name of the artifact you previously uploaded

To maintain old behavior (if needed):

- uses: actions/download-artifact@v5
  with:
    artifact-ids: 12345
    path: dist/my-artifact  # Explicitly specify the nested path

New Contributors

Full Changelog: actions/download-artifact@v4...v5.0.0

v5

Compare Source

actions/setup-node (actions/setup-node)

v6.4.0

Compare Source

What's Changed

Dependency updates:

New Contributors

Full Changelog: actions/setup-node@v6...v6.4.0

v6.3.0

Compare Source

What's Changed

Enhancements:

When using node-version-file: package.json, setup-node now prefers devEngines.runtime over engines.node.

Dependency updates:
Bug fixes:

New Contributors

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

v6.2.0

Compare Source

What's Changed

Documentation
Dependency updates:

New Contributors

Full Changelog: actions/setup-node@v6...v6.2.0

v6.1.0

Compare Source

What's Changed

Enhancement:
Dependency updates:
Documentation update:

Full Changelog: actions/setup-node@v6...v6.1.0

v6.0.0

Compare Source

What's Changed

Breaking Changes

Dependency Upgrades

Full Changelog: actions/setup-node@v5...v6.0.0

v6

Compare Source

v5.0.0

Compare Source

What's Changed

Breaking Changes

This update, introduces automatic caching when a valid packageManager field is present in your package.json. This aims to improve workflow performance and make dependency management more seamless.
To disable this automatic caching, set package-manager-cache: false

steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
  with:
    package-manager-cache: false

Make sure your runner is on version v2.327.1 or later to ensure compatibility with this release. See Release Notes

Dependency Upgrades

New Contributors

Full Changelog: actions/setup-node@v4...v5.0.0

v5

Compare Source

v4.4.0

Compare Source

What's Changed

Bug fixes:
Enhancement:
Dependency update:

New Contributors

Full Changelogactions/setup-node@v4...v4.4.0

v4.3.0

Compare Source

What's Changed

Dependency updates

New Contributors

Full Changelog: actions/setup-node@v4...v4.3.0

v4.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/setup-node@v4...v4.2.0

v4.1.0

Compare Source

What's Changed

  • Resolve High Security Alerts by upgrading Dependencies by @​aparnajyothi-y in #​1132
  • Upgrade IA Publish by @​Jcambass in #​1134
  • Revise isGhes logic by @​jww3 in #​1148
  • Add architecture to cache key by @​pengx17 in #​843
    This addresses issues with caching by adding the architecture (arch) to the cache key, ensuring that cache keys are accurate to prevent conflicts.
    Note: This change may break previous cache keys as they will no longer be compatible with the new format.

New Contributors

Full Changelog: actions/setup-node@v4...v4.1.0

v4.0.4

Compare Source

What's Changed

Documentation changes:

New Contributors

Full Changelog: actions/setup-node@v4...v4.0.4

v4.0.3

Compare Source

What's Changed

Bug fixes:
Documentation changes:
Dependency updates:

New Contributors

Full Changelog: actions/setup-node@v4...v4.0.3

v4.0.2

Compare Source

What's Changed

New Contributors

Full Changelog: actions/setup-node@v4.0.1...v4.0.2

v4.0.1

Compare Source

What's Changed

New Contributors

Full Changelog: actions/setup-node@v4...v4.0.1

v4.0.0

Compare Source

What's Changed

In scope of this release we changed version of node runtime for action from node16 to node20 and updated dependencies in #​866

Besides, release contains such changes as:

New Contributors

Full Changelog: actions/setup-node@v3...v4.0.0

v4

Compare Source

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

v6.0.0

Compare Source

v6 - What's new

[!IMPORTANT]
actions/upload-artifact@​v6 now runs on Node.js 24 (runs.using: node24) and requires a minimum Actions Runner version of 2.327.1. If you are using self-hosted runners, ensure they are updated before upgrading.

Node.js 24

This release updates the runtime to Node.js 24. v5 had preliminary support for Node.js 24, however this action was by default still running on Node.js 20. Now this action by default will run on Node.js 24.

What's Changed

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "on the first day of january"
  • 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.

@webteam-app

Copy link
Copy Markdown

Demo starting at https://netplan-io-283.demos.haus

@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from bc3712b to 55cc66d Compare January 10, 2024 04:53
@codecov

codecov Bot commented Jan 10, 2024

Copy link
Copy Markdown

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 80.43%. Comparing base (c3f513f) to head (9246c17).
Report is 9 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #283   +/-   ##
=======================================
  Coverage   80.43%   80.43%           
=======================================
  Files           2        2           
  Lines          46       46           
=======================================
  Hits           37       37           
  Misses          9        9           
Flag Coverage Δ
python 80.43% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

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

@renovate renovate Bot force-pushed the renovate/major-all branch 6 times, most recently from b2c3e56 to 57e5401 Compare January 19, 2024 10:23
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from c10a850 to c97842f Compare February 4, 2024 06:48
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 77502ec to 82f6f2f Compare March 26, 2024 14:18
@renovate renovate Bot force-pushed the renovate/major-all branch from 82f6f2f to a4b9186 Compare April 5, 2024 21:46
@renovate renovate Bot force-pushed the renovate/major-all branch 5 times, most recently from 45e6a15 to 14c4384 Compare April 26, 2024 21:32
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 1f24ce1 to 880fd1f Compare May 3, 2024 20:01
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 4b579c2 to 7494c43 Compare May 24, 2024 14:28
@renovate renovate Bot force-pushed the renovate/major-all branch 3 times, most recently from ed32ee4 to 112ce7f Compare June 1, 2024 18:30
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 3b49934 to 01fb7c2 Compare June 11, 2024 06:19
@renovate renovate Bot force-pushed the renovate/major-all branch from 01fb7c2 to 3e47d77 Compare June 14, 2024 22:58
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 353bd75 to 790e983 Compare September 12, 2024 01:40
@renovate renovate Bot force-pushed the renovate/major-all branch 3 times, most recently from 83ddfa0 to 21a4f5c Compare September 26, 2024 21:07
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from b76dc31 to f13485f Compare October 11, 2024 17:06
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 0a7c558 to b6e9e4f Compare October 18, 2024 22:20
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 8db5630 to 9233622 Compare November 4, 2024 14:16
@renovate renovate Bot force-pushed the renovate/major-all branch from 9233622 to 283f437 Compare November 15, 2024 20:11
@renovate renovate Bot force-pushed the renovate/major-all branch 5 times, most recently from 8a59a8e to 22be14c Compare November 30, 2024 00:59
@renovate renovate Bot force-pushed the renovate/major-all branch from 22be14c to 2d35958 Compare December 4, 2024 08:03
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 7cabfcd to f0ea204 Compare December 15, 2024 15:24
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 5d258d7 to 58e40f2 Compare December 31, 2024 07:15
@renovate renovate Bot force-pushed the renovate/major-all branch 6 times, most recently from 5f287f0 to 1cb3534 Compare January 15, 2025 06:26
@renovate renovate Bot force-pushed the renovate/major-all branch from 1cb3534 to 0a752ab Compare January 19, 2025 02:01
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.

1 participant