Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the npm group across 1 directory with 13 updates #193

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Sep 30, 2024

Bumps the npm group with 12 updates in the / directory:

Package From To
@actions/artifact 1.1.2 2.1.9
@actions/github 5.1.1 6.0.0
@octokit/plugin-retry 5.0.5 7.1.2
@octokit/types 13.5.0 13.6.0
file-url 3.0.0 4.0.0
get-folder-size 2.0.1 5.0.0
@ava/typescript 4.1.0 5.0.0
@eslint/js 9.11.0 9.11.1
@types/get-folder-size 2.0.0 3.0.4
@types/node 20.9.0 22.7.4
ava 5.3.1 6.1.3
eslint 8.57.1 9.11.1

Updates @actions/artifact from 1.1.2 to 2.1.9

Changelog

Sourced from @​actions/artifact's changelog.

2.1.9

  • Fixed artifact upload chunk timeout logic #1774
  • Use lazy stream to prevent issues with open file limits #1771

2.1.8

  • Allows *.localhost domains for hostname checks for local development.

2.1.7

  • Update unzip-stream dependency and reverted to using unzip.Extract()

2.1.6

  • Will retry on invalid request responses.

2.1.5

  • Bumped archiver dependency to 7.0.1

2.1.4

  • Adds info-level logging for zip extraction

2.1.3

  • Fixes a bug in the extract logic updated in 2.1.2

2.1.2

  • Updated the stream extract functionality to use unzip.Parse() instead of unzip.Extract() for greater control of unzipping artifacts

2.1.1

  • Updated isGhes check to include .ghe.com and .ghe.localhost as accepted hosts

2.1.0

  • Added ArtifactClient#deleteArtifact to delete artifacts by name #1626
  • Update error messaging to be more useful #1628

2.0.1

2.0.0

  • Major release. Supports new Artifact backend for improved speed, reliability and behavior.
  • Numerous API changes, some breaking.

... (truncated)

Commits

Updates @actions/github from 5.1.1 to 6.0.0

Changelog

Sourced from @​actions/github's changelog.

6.0.0

  • Support the latest Octokit in @​actions/github #1553
    • Drop support of NodeJS v14, v16
Commits

Updates @octokit/plugin-retry from 5.0.5 to 7.1.2

Release notes

Sourced from @​octokit/plugin-retry's releases.

v7.1.2

7.1.2 (2024-09-18)

Bug Fixes

v7.1.1

7.1.1 (2024-04-23)

Bug Fixes

v7.1.0

7.1.0 (2024-04-03)

Features

v7.0.4

7.0.4 (2024-04-03)

Bug Fixes

  • deps: update dependency @​octokit/types to v13 (7d5ecaf)

v7.0.3

7.0.3 (2024-03-01)

Bug Fixes

  • deps: update dependency @​octokit/request-error to v6 (#514) (598caa4)

v7.0.2

7.0.2 (2024-02-27)

Bug Fixes

v7.0.1

7.0.1 (2024-02-26)

... (truncated)

Commits

Updates @octokit/types from 13.5.0 to 13.6.0

Release notes

Sourced from @​octokit/types's releases.

v13.6.0

13.6.0 (2024-09-27)

Features

  • add better types for request.request.signal (#649) (78173c7)

v13.5.1

13.5.1 (2024-09-24)

Bug Fixes

  • deps: update dependency @​octokit/tsconfig to v4 (#610) (b01e2fb)
Commits
  • 78173c7 feat: add better types for request.request.signal (#649)
  • b01e2fb fix(deps): update dependency @​octokit/tsconfig to v4 (#610)
  • c8bb699 build(deps-dev): bump dset from 3.1.3 to 3.1.4 (#648)
  • e52f6e9 chore(deps): update dependency json-schema-to-typescript to v15 (#647)
  • aca1e8b chore(deps): update dependency typedoc to ^0.26.0
  • 9370d29 ci(action): update actions/add-to-project action to v1.0.2 (#646)
  • f92bd84 build(deps-dev): bump braces from 3.0.2 to 3.0.3
  • 3de1385 ci(action): update actions/checkout digest to 692973e (#643)
  • b21cc04 🚧 Workflows have changed (#642)
  • 20bdca2 chore(deps): update dependency semantic-release to v24 (#641)
  • Additional commits viewable in compare view

Updates file-url from 3.0.0 to 4.0.0

Release notes

Sourced from file-url's releases.

v4.0.0

Breaking

  • Require Node.js 12 52b906d
  • This package is now pure ESM. Please read this.

sindresorhus/file-url@v3.0.0...v4.0.0

Commits

Updates get-folder-size from 2.0.1 to 5.0.0

Release notes

Sourced from get-folder-size's releases.

5.0.0

  • Adds typescript definitions.

  • No longer returns unsafe numbers. Sizes that are above the safe threshold for numbers will be capped at the largest safe number.

  • Bumps minimum node support to version 18.

  • Internal improvements to speed, RAM usage, and code size.

4.0.0

  • Fixes a bug where files with certain ino IDs could collide and be treated as a single file even though there were more than one (#21). If you use a custom fs module that doesn't support BigInts, this will break your setup.

  • Adds support for returning the folder size as a BigInt.

  • Minor improvements to code quality and tooling.

3.1.0

The package now follows best practices for its exports. This should not have any effect on already working installs, but it should mean better compatibility with a variety of new use-cases.

3.0.1

Adds documentation on how to import this package from a CommonJS module.

3.0.0

Completely redesigns the API to use ES6 promises and bumps minimum node support to version 14.

Commits
  • 4df10b2 Update to v5.0.0
  • 812755d Specify test expectation for too large numbers
  • c9db434 Remove variable rename
  • 5fff0db Ensure a safe number is always returned
  • 66f2bdb Streamline size collection
  • e5425d2 Add missing node import prefix
  • 02c4ed7 Switch from gar to native args parsing
  • feaea73 Refactor CLI tests
  • ef55b76 Fix path separator skipping
  • 760dec1 Fix path separator skipping
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by atjn, a new releaser for get-folder-size since your current version.


Updates @ava/typescript from 4.1.0 to 5.0.0

Release notes

Sourced from @​ava/typescript's releases.

v5.0.0

What's Changed

New Contributors

Full Changelog: avajs/typescript@v4.1.0...v5.0.0

Commits
  • 851ecc3 5.0.0
  • 55472d8 Include Node.js 22 in supported engines and test matrix
  • 672714f Update dependencies
  • 56e3b15 Upgrade XO and apply fixes
  • 1ae15b2 Restrict compatibility to AVA 6
  • 41d8c6b Upgrade actions
  • bfd7dfa Target same Node.js versions as AVA 6
  • c3d1833 Include Node.js 21 in supported engines and test matrix
  • See full diff in compare view

Updates @eslint/js from 9.11.0 to 9.11.1

Release notes

Sourced from @​eslint/js's releases.

v9.11.1

Bug Fixes

  • 20fd916 fix: add @eslint/core, @types/estree, & @types/json-schema deps (#18938) (Nitin Kumar)
  • 2738322 fix: add missing types for require-atomic-updates rule (#18937) (Kristóf Poduszló)
  • d71ff30 fix: add missing types for object-shorthand rule (#18935) (Kristóf Poduszló)
  • 561cadc fix: add missing types for no-unsafe-negation rule (#18932) (Kristóf Poduszló)
  • 8843656 fix: add missing types for no-underscore-dangle rule (#18931) (Kristóf Poduszló)
  • 92cde5c fix: add missing types for no-shadow rule (#18930) (Kristóf Poduszló)
  • b3cbe11 fix: add missing types for no-sequences rule (#18929) (Kristóf Poduszló)
  • 976f77f fix: add missing types for no-unused-expressions rule (#18933) (Kristóf Poduszló)

Documentation

  • 3eff709 docs: replace deprecated Linter.FlatConfig type with Linter.Config (#18941) (Carlos Meira)

Chores

  • df4a859 chore: upgrade @​eslint/js@​9.11.1 (#18943) (Milos Djermanovic)
  • 36d8095 chore: package.json update for @​eslint/js release (Jenkins)
Changelog

Sourced from @​eslint/js's changelog.

v9.11.1 - September 23, 2024

  • df4a859 chore: upgrade @​eslint/js@​9.11.1 (#18943) (Milos Djermanovic)
  • 36d8095 chore: package.json update for @​eslint/js release (Jenkins)
  • 20fd916 fix: add @eslint/core, @types/estree, & @types/json-schema deps (#18938) (Nitin Kumar)
  • 3eff709 docs: replace deprecated Linter.FlatConfig type with Linter.Config (#18941) (Carlos Meira)
  • 2738322 fix: add missing types for require-atomic-updates rule (#18937) (Kristóf Poduszló)
  • d71ff30 fix: add missing types for object-shorthand rule (#18935) (Kristóf Poduszló)
  • 561cadc fix: add missing types for no-unsafe-negation rule (#18932) (Kristóf Poduszló)
  • 8843656 fix: add missing types for no-underscore-dangle rule (#18931) (Kristóf Poduszló)
  • 92cde5c fix: add missing types for no-shadow rule (#18930) (Kristóf Poduszló)
  • b3cbe11 fix: add missing types for no-sequences rule (#18929) (Kristóf Poduszló)
  • 976f77f fix: add missing types for no-unused-expressions rule (#18933) (Kristóf Poduszló)
Commits

Updates @types/get-folder-size from 2.0.0 to 3.0.4

Commits

Updates @types/node from 20.9.0 to 22.7.4

Commits

Updates ava from 5.3.1 to 6.1.3

Release notes

Sourced from ava's releases.

v6.1.3

What's Changed

New Contributors

Full Changelog: avajs/ava@v6.1.2...v6.1.3

v6.1.2

What's Changed

Full Changelog: avajs/ava@v6.1.1...v6.1.2

v6.1.1

What's Changed

Full Changelog: avajs/ava@v6.1.0...v6.1.1

v6.1.0

What's Changed

  • Implement registerCompletionHandler() by @​novemberborn in avajs/ava#3283

    AVA 6 expects test code to clean up gracefully when the tests are complete, allowing the test environment (worker thread or child process) to exit. If this does not happen, AVA will report a timeout. You can use registerCompletionHandler() to perform any other clean up (or indeed exit the process) after AVA has completed the test execution. See the description here.

  • Fix potential bug with watch mode when no failed test files are written by @​novemberborn in avajs/ava#3287

  • Fix ava/internal ESM type module by @​codetheweb in avajs/ava#3292

Full Changelog: avajs/ava@v6.0.1...v6.1.0

v6.0.1

What's Changed

Full Changelog: avajs/ava@v6.0.0...v6.0.1

v6.0.0

Breaking Changes

  • AVA now requires Node.js versions 18.18, 20.8 or 21. Versions 14 and 16 are no longer supported. #3251 #3216

... (truncated)

Commits
  • f8bf00c 6.1.3
  • 002b3a0 Include Node.js 22 in supported engines and test matrix
  • ec1a8d2 Document serial configuration option
  • 01ec280 Add VS Code debugging instructions for Yarn PnP projects
  • 5d48c95 6.1.2
  • be5000a Fix throws assertions rejecting falsy values when any: true
  • 1d62caf Upgrade xo to v0.57.0
  • 2e0c2b1 6.1.1
  • 5161bf7 Update dependencies
  • 15dddf3 Fix external-assertions snapshot for Node.js 20.11
  • Additional commits viewable in compare view

Updates eslint from 8.57.1 to 9.11.1

Release notes

Sourced from eslint's releases.

v9.11.1

Bug Fixes

  • 20fd916 fix: add @eslint/core, @types/estree, & @types/json-schema deps (#18938) (Nitin Kumar)
  • 2738322 fix: add missing types for require-atomic-updates rule (#18937) (Kristóf Poduszló)
  • d71ff30 fix: add missing types for object-shorthand rule (#18935) (Kristóf Poduszló)
  • 561cadc fix: add missing types for no-unsafe-negation rule (#18932) (Kristóf Poduszló)
  • 8843656 fix: add missing types for no-underscore-dangle rule (#18931) (Kristóf Poduszló)
  • 92cde5c fix: add missing types for no-shadow rule (#18930) (Kristóf Poduszló)
  • b3cbe11 fix: add missing types for no-sequences rule (#18929) (Kristóf Poduszló)
  • 976f77f fix: add missing types for no-unused-expressions rule (#18933) (Kristóf Poduszló)

Documentation

  • 3eff709 docs: replace deprecated Linter.FlatConfig type with Linter.Config (#18941) (Carlos Meira)

Chores

  • df4a859 chore: upgrade @​eslint/js@​9.11.1 (#18943) (Milos Djermanovic)
  • 36d8095 chore: package.json update for @​eslint/js release (Jenkins)

v9.11.0

Features

  • ec30c73 feat: add "eslint/universal" to export Linter (#18883) (唯然)
  • c591da6 feat: Add language to types (#18917) (Nicholas C. Zakas)
  • 492eb8f feat: limit the name given to ImportSpecifier in id-length (#18861) (Tanuj Kanti)
  • 19c6856 feat: Add no-useless-constructor suggestion (#18799) (Jordan Thomson)
  • a48f8c2 feat: add type FormatterFunction, update LoadedFormatter (#18872) (Francesco Trotta)

Bug Fixes

  • 5e5f39b fix: add missing types for no-restricted-exports rule (#18914) (Kristóf Poduszló)
  • 8f630eb fix: add missing types for no-param-reassign options (#18906) (Kristóf Poduszló)
  • d715781 fix: add missing types for no-extra-boolean-cast options (#18902) (Kristóf Poduszló)
  • 2de5742 fix: add missing types for no-misleading-character-class options (#18905) (Kristóf Poduszló)
  • c153084 fix: add missing types for no-implicit-coercion options (#18903) (Kristóf Poduszló)
  • fa11b2e fix: add missing types for no-empty-function options (#18901) (Kristóf Poduszló)
  • a0deed1 fix: add missing types for camelcase options (#18897) (Kristóf Poduszló)

Documentation

  • e4e5709 docs: correct prefer-object-has-own type definition comment (#18924) (Nitin Kumar)
  • 91cbd18 docs: add unicode abbreviations in no-irregular-whitespace rule (#18894) (Alix Royere)
  • 59cfc0f docs: clarify resultsMeta in LoadedFormatter type (#18881) (Milos Djermanovic)
  • adcc50d docs: Update README (GitHub Actions Bot)
  • 4edac1a docs: Update README (GitHub Actions Bot)

Build Related

  • 959d360 build: Support updates to previous major versions (#18871) (Milos Djermanovic)

Chores

  • ca21a64 chore: upgrade @​eslint/js@​9.11.0 (#18927) (Milos Djermanovic)
  • a10f90a chore: package.json update for @​eslint/js release (Jenkins)
  • e4e02cc refactor: Extract processor logic into ProcessorService (#18818) (Nicholas C. Zakas)
  • 6d4484d chore: updates for v8.57.1 release (Jenkins)

... (truncated)

Changelog

Sourced from eslint's changelog.

v9.11.1 - September 23, 2024

  • df4a859 chore: upgrade @​eslint/js@​9.11.1 (#18943) (Milos Djermanovic)
  • 36d8095 chore: package.json update for @​eslint/js release (Jenkins)
  • 20fd916 fix: add @eslint/core, @types/estree, & @types/json-schema deps (#18938) (Nitin Kumar)
  • 3eff709 docs: replace deprecated Linter.FlatConfig type with Linter.Config (#18941) (Carlos Meira)
  • 2738322 fix: add missing types for require-atomic-updates rule (#18937) (Kristóf Poduszló)
  • d71ff30 fix: add missing types for object-shorthand rule (#18935) (Kristóf Poduszló)
  • 561cadc fix: add missing types for no-unsafe-negation rule (#18932) (Kristóf Poduszló)
  • 8843656 fix: add missing types for no-underscore-dangle rule (#18931) (Kristóf Poduszló)
  • 92cde5c fix: add missing types for no-shadow rule (#18930) (Kristóf Poduszló)
  • b3cbe11 fix: add missing types for no-sequences rule (#18929) (Kristóf Poduszló)
  • 976f77f fix: add missing types for no-unused-expressions rule (#18933) (Kristóf Poduszló)

v9.11.0 - September 20, 2024

  • ca21a64 chore: upgrade @​eslint/js@​9.11.0 (#18927) (Milos Djermanovic)
  • a10f90a chore: package.json update for @​eslint/js release (Jenkins)
  • 5e5f39b fix: add missing types for no-restricted-exports rule (#18914) (Kristóf Poduszló)
  • e4e5709 docs: correct prefer-object-has-own type definition comment (#18924) (Nitin Kumar)
  • 8f630eb fix: add missing types for no-param-reassign options (#18906) (Kristóf Poduszló)
  • d715781 fix: add missing types for no-extra-boolean-cast options (#18902) (Kristóf Poduszló)
  • e4e02cc refactor: Extract processor logic into ProcessorService (#18818) (Nicholas C. Zakas)
  • ec30c73 feat: add "eslint/universal" to export Linter (#18883) (唯然)
  • c591da6 feat: Add language to types (#18917) (Nicholas C. Zakas)
  • 91cbd18 docs: add unicode abbreviations in no-irregular-whitespace rule (#18894) (Alix Royere)
  • 959d360 build: Support updates to previous major versions (#18871) (Milos Djermanovic)
  • 6d4484d chore: updates for v8.57.1 release (Jenkins)
  • 492eb8f feat: limit the name given to ImportSpecifier in id-length (#18861) (Tanuj Kanti)
  • 2de5742 fix: add missing types for no-misleading-character-class options (#18905) (Kristóf Poduszló)
  • c153084 fix: add missing types for no-implicit-coercion options (#18903) (Kristóf Poduszló)
  • 19c6856 feat: Add no-useless-constructor suggestion (#18799) (Jordan Thomson)
  • fa11b2e fix: add missing types for no-empty-function options (#18901) (Kristóf Poduszló)
  • a0deed1 fix: add missing types for camelcase options (#18897) (Kristóf Poduszló)
  • 71f37c5 refactor: use optional chaining when validating config rules (#18893) (lucasrmendonca)
  • 2c2805f chore: Add PR note to all templates (#18892) (Nicholas C. Zakas)
  • 7b852ce refactor: use Directive class from @eslint/plugin-kit (#18884) (Milos Djermanovic)
  • a48f8c2 feat: add type FormatterFunction, update LoadedFormatter (#18872) (Francesco Trotta)
  • d594ddd chore: update dependency @​eslint/core to ^0.6.0 (#18863) (renovate[bot])
  • 59cfc0f docs: clarify resultsMeta in LoadedFormatter type (#18881) (Milos Djermanovic)
  • 78b2421 chore: Update change.yml (#18882) (Nicholas C. Zakas)
  • a416f0a chore: enable $ExpectType comments in .ts files (#18869) (Francesco Trotta)
  • adcc50d docs: Update README (GitHub Actions Bot)
  • 4edac1a docs: Update README (GitHub Actions Bot)
Commits
  • 69e9459 9.11.1
  • fcdac44 Build: changelog update for 9.11.1
  • df4a859 chore: upgrade @​eslint/js@​9.11.1 (#18943)
  • 36d8095 chore: package.json update for @​eslint/js release
  • 20fd916 fix: add @eslint/core, @types/estree, & @types/json-schema deps (#18938)
  • 3eff709 docs: replace deprecated Linter.FlatConfig type with Linter.Config (#18941)
  • 2738322 fix: add missing types for require-atomic-updates rule (#18937)
  • d71ff30 fix: add missing types for object-shorthand rule (#18935)
  • 561cadc fix: add missing types for no-unsafe-negation rule (#18932)
  • 8843656 fix: add missing types for no-underscore-dangle rule (#18931)
  • Additional commits viewable in compare view

Updates eslint-plugin-import from 2.29.1 to 2.30.0

Release notes

Sourced from eslint-plugin-import's releases.

v2.30.0

Added

Fixed

Changed

  • [Docs] no-extraneous-dependencies: Make glob pattern description more explicit (#2944, thanks [@​mulztob])
  • [no-unused-modules]: add console message to help debug #2866
  • [Refactor] ExportMap: make procedures static instead of monkeypatching exportmap (#2982, thanks [@​soryy708])
  • [Refactor] ExportMap: separate ExportMap instance from its builder logic (#2985, thanks [@​soryy708])
  • [Docs] order: Add a quick note on how unbound imports and --fix (#2640, thanks [@​minervabot])
  • [Tests] appveyor -> GHA (run tests on Windows in both pwsh and WSL + Ubuntu) (#2987, thanks [@​joeyguerra])
  • [actions] migrate OSX tests to GHA ([ljharb#37], thanks [@​aks-])
  • [Refactor] exportMapBuilder: avoid hoisting (#2989, thanks [@​soryy708])
  • [Refactor] ExportMap: extract "builder" logic to separate files (#2991, thanks [@​soryy708])
  • [Docs] [order]: update the description of the pathGroupsExcludedImportTypes option (#3036, thanks [@​liby])
  • [readme] Clarify how to install the plugin (#2993, thanks [@​jwbth])

... (truncated)

Changelog

Sourced from

Copy link
Author

dependabot bot commented on behalf of github Sep 30, 2024

Dependabot tried to add @zendesk/codeql-production-shield as a reviewer to this PR, but received the following error from GitHub:

POST https://api.github.com/repos/zendesk/codeql-action/pulls/193/requested_reviewers: 422 - Reviews may only be requested from collaborators. One or more of the teams you specified is not a collaborator of the zendesk/codeql-action repository. // See: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request

Copy link
Author

dependabot bot commented on behalf of github Sep 30, 2024

The following labels could not be found: Update dependencies.

Bumps the npm group with 12 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@actions/artifact](https://github.com/actions/toolkit/tree/HEAD/packages/artifact) | `1.1.2` | `2.1.9` |
| [@actions/github](https://github.com/actions/toolkit/tree/HEAD/packages/github) | `5.1.1` | `6.0.0` |
| [@octokit/plugin-retry](https://github.com/octokit/plugin-retry.js) | `5.0.5` | `7.1.2` |
| [@octokit/types](https://github.com/octokit/types.ts) | `13.5.0` | `13.6.0` |
| [file-url](https://github.com/sindresorhus/file-url) | `3.0.0` | `4.0.0` |
| [get-folder-size](https://github.com/alessioalex/get-folder-size) | `2.0.1` | `5.0.0` |
| [@ava/typescript](https://github.com/avajs/typescript) | `4.1.0` | `5.0.0` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.11.0` | `9.11.1` |
| [@types/get-folder-size](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/get-folder-size) | `2.0.0` | `3.0.4` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.9.0` | `22.7.4` |
| [ava](https://github.com/avajs/ava) | `5.3.1` | `6.1.3` |
| [eslint](https://github.com/eslint/eslint) | `8.57.1` | `9.11.1` |



Updates `@actions/artifact` from 1.1.2 to 2.1.9
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/artifact/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/artifact)

Updates `@actions/github` from 5.1.1 to 6.0.0
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/github/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/github)

Updates `@octokit/plugin-retry` from 5.0.5 to 7.1.2
- [Release notes](https://github.com/octokit/plugin-retry.js/releases)
- [Commits](octokit/plugin-retry.js@v5.0.5...v7.1.2)

Updates `@octokit/types` from 13.5.0 to 13.6.0
- [Release notes](https://github.com/octokit/types.ts/releases)
- [Commits](octokit/types.ts@v13.5.0...v13.6.0)

Updates `file-url` from 3.0.0 to 4.0.0
- [Release notes](https://github.com/sindresorhus/file-url/releases)
- [Commits](sindresorhus/file-url@v3.0.0...v4.0.0)

Updates `get-folder-size` from 2.0.1 to 5.0.0
- [Release notes](https://github.com/alessioalex/get-folder-size/releases)
- [Commits](alessioalex/get-folder-size@v2.0.1...5.0.0)

Updates `@ava/typescript` from 4.1.0 to 5.0.0
- [Release notes](https://github.com/avajs/typescript/releases)
- [Commits](avajs/typescript@v4.1.0...v5.0.0)

Updates `@eslint/js` from 9.11.0 to 9.11.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/commits/v9.11.1/packages/js)

Updates `@types/get-folder-size` from 2.0.0 to 3.0.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/get-folder-size)

Updates `@types/node` from 20.9.0 to 22.7.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `ava` from 5.3.1 to 6.1.3
- [Release notes](https://github.com/avajs/ava/releases)
- [Commits](avajs/ava@v5.3.1...v6.1.3)

Updates `eslint` from 8.57.1 to 9.11.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.57.1...v9.11.1)

Updates `eslint-plugin-import` from 2.29.1 to 2.30.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](import-js/eslint-plugin-import@v2.29.1...v2.30.0)

---
updated-dependencies:
- dependency-name: "@actions/artifact"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@actions/github"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@octokit/plugin-retry"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@octokit/types"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: file-url
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: get-folder-size
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@ava/typescript"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@eslint/js"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/get-folder-size"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: ava
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: eslint-plugin-import
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/npm-407641db4d branch from 2838fad to 8bf4560 Compare September 30, 2024 16:26
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