Skip to content

ci: bump actions/upload-artifact from 4.6.2 to 7.0.0#6

Closed
dependabot[bot] wants to merge 24 commits intomainfrom
dependabot/github_actions/actions/upload-artifact-7.0.0
Closed

ci: bump actions/upload-artifact from 4.6.2 to 7.0.0#6
dependabot[bot] wants to merge 24 commits intomainfrom
dependabot/github_actions/actions/upload-artifact-7.0.0

Conversation

@dependabot
Copy link
Contributor

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

Bumps actions/upload-artifact from 4.6.2 to 7.0.0.

Release notes

Sourced from actions/upload-artifact's releases.

v7.0.0

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

v6.0.0

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

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

v5.0.0

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.

... (truncated)

Commits
  • bbbca2d Support direct file uploads (#764)
  • 589182c Upgrade the module to ESM and bump dependencies (#762)
  • 47309c9 Merge pull request #754 from actions/Link-/add-proxy-integration-tests
  • 02a8460 Add proxy integration test
  • b7c566a Merge pull request #745 from actions/upload-artifact-v6-release
  • e516bc8 docs: correct description of Node.js 24 support in README
  • ddc45ed docs: update README to correct action name for Node.js 24 support
  • 615b319 chore: release v6.0.0 for Node.js 24 support
  • 017748b Merge pull request #744 from actions/fix-storage-blob
  • 38d4c79 chore: rebuild dist
  • Additional commits viewable in compare view

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)

Dylan Shilts and others added 24 commits February 27, 2026 16:46
Renamed package from @waves/oracle-data to @decentralchain/oracle-data
Updated repository URLs to Decentral-America/oracle-data
Created README with DecentralChain branding
Removed Waves assignee references from GitHub issue templates
Verified zero @waves/* dependencies
All tests pass (9/9)
grep -rni waves returns zero results
- Added Husky pre-commit hook with lint-staged + typecheck
- Added Prettier (.prettierrc.json) for consistent formatting
- Added ESLint flat config (eslint.config.js) with typescript-eslint
- Upgraded TypeScript 3.2 → 5.9, Jest 23 → 29, ts-jest 23 → 29
- Fixed strict-mode catch clauses (unknown type handling)
- Fixed unused parameter and expression lint errors
- Renamed interface.d.ts → interface.ts for module resolution
- All tests pass (9/9), zero lint errors, typecheck clean
…, and enforce 2026+ best practices

- Remove all CommonJS (CJS) build/config/output; ESM-only is now default
- Update package.json, tsup.config.ts, and dist/ to ESM-only
- Clean up all CJS artifacts
- Update MODERNIZE.md: ESM-only is required for new TypeScript projects, dual ESM/CJS only for legacy
- Update architectural decisions table to reflect ESM-only as standard
- Ensure modernization prompt and templates prevent mixed-module repos
- All code, config, and docs validated (format, lint, typecheck, test, build)
- No legacy or mixed-module output remains
- Add tests for all asset status types (SUSPICIOUS, NOT_VERIFY, DETAILED)
- Add tests for required/optional description handling
- Add tests for unsupported version error paths
- Add tests for utils edge cases (getFieldsDiff, isProvider, toField, toFields)
- Add tests for response utils (getFieldValue, getAssetIdFromKey)
- Add v8 ignore comments for unreachable defensive code branches
- Restore 90% branch coverage threshold
- Convert TProcessor, THash (response) to internal types (not exported)
- Convert TItemOrList (utils) to internal type (not exported)
- Add knip as dev dependency for dead code detection
- Add knip.json config (enum members intentionally kept for protocol spec)
- All 56 tests pass, 95%+ coverage maintained
- Remove unused RESPONSE_STATUSES.EMPTY enum member (dead code)
- Narrow v8 ignore comment to only the unreachable break in checkType
- Add tests for getFieldsFromData, getFieldsFromAsset, getDifferenceByFields
- 64/64 tests pass, knip reports zero issues
- Bump coverage thresholds from 90% to 95%
- Add isValidStatus() runtime validation in parser (rejects out-of-range STATUS_LIST)
- Add isValidAssetId() base58 format validator (exported utility)
- Freeze PATTERNS constant with Object.freeze
- Pin GitHub Actions by SHA (prevent tag-hijacking)
- Add npm audit --audit-level=moderate to CI
- Add id-token:write permission for provenance attestation
- Add SBOM generation (CycloneDX) as CI artifact
- Add CODEOWNERS for financial logic core review gates
- Promote @typescript-eslint/no-explicit-any from warn to error
- Add 10 property-based fuzz tests via fast-check (1,700+ runs)
- Add 9 validation utility tests (isValidStatus, isValidAssetId, parser rejection)
- 83 tests passing, 0 lint errors, 0 type errors, 1.86 kB brotlied"
- use Object.create(null) in toHash to prevent __proto__ key injection
- guard empty langList in processDescription to avoid phantom lookups
- add exhaustive default case in ASSETS_VERSION_MAP switch for defense in depth
- add security and edge-case regression tests (88 total)
Bumps the dev-dependencies group with 3 updates: [globals](https://github.com/sindresorhus/globals), [lint-staged](https://github.com/lint-staged/lint-staged) and [publint](https://github.com/publint/publint/tree/HEAD/packages/publint).


Updates `globals` from 17.3.0 to 17.4.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.3.0...v17.4.0)

Updates `lint-staged` from 16.3.0 to 16.3.1
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v16.3.0...v16.3.1)

Updates `publint` from 0.3.17 to 0.3.18
- [Release notes](https://github.com/publint/publint/releases)
- [Changelog](https://github.com/publint/publint/blob/master/packages/publint/CHANGELOG.md)
- [Commits](https://github.com/publint/publint/commits/publint@0.3.18/packages/publint)

---
updated-dependencies:
- dependency-name: globals
  dependency-version: 17.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: lint-staged
  dependency-version: 16.3.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: publint
  dependency-version: 0.3.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Add GitHub Actions workflow to publish to npm with --tag next on
GitHub Release. Regenerate package-lock.json.
… cases, and improved package metadata

Co-authored-by: dylanpersonguy <197028365+dylanpersonguy@users.noreply.github.com>
…nd-repo-description

docs: enhance README and package metadata for enterprise readability
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.6.2 to 7.0.0.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@ea165f8...bbbca2d)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 7, 2026

Labels

The following labels could not be found: ci. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 8, 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/upload-artifact-7.0.0 branch March 8, 2026 09:04
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.

3 participants