Skip to content

ci(deps): bump actions/cache from 4 to 5#6

Closed
dependabot[bot] wants to merge 48 commits into
masterfrom
dependabot/github_actions/actions/cache-5
Closed

ci(deps): bump actions/cache from 4 to 5#6
dependabot[bot] wants to merge 48 commits into
masterfrom
dependabot/github_actions/actions/cache-5

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github May 14, 2026

Bumps actions/cache from 4 to 5.

Release notes

Sourced from actions/cache's releases.

v5.0.0

[!IMPORTANT] actions/cache@v5 runs on the Node.js 24 runtime and requires a minimum Actions Runner version of 2.327.1.

If you are using self-hosted runners, ensure they are updated before upgrading.


What's Changed

Full Changelog: actions/cache@v4.3.0...v5.0.0

v4.3.0

What's Changed

New Contributors

Full Changelog: actions/cache@v4...v4.3.0

v4.2.4

What's Changed

New Contributors

Full Changelog: actions/cache@v4...v4.2.4

v4.2.3

What's Changed

  • Update to use @​actions/cache 4.0.3 package & prepare for new release by @​salmanmkc in actions/cache#1577 (SAS tokens for cache entries are now masked in debug logs)

New Contributors

Full Changelog: actions/cache@v4.2.2...v4.2.3

... (truncated)

Changelog

Sourced from actions/cache's changelog.

Releases

How to prepare a release

[!NOTE]
Relevant for maintainers with write access only.

  1. Switch to a new branch from main.
  2. Run npm test to ensure all tests are passing.
  3. Update the version in https://github.com/actions/cache/blob/main/package.json.
  4. Run npm run build to update the compiled files.
  5. Update this https://github.com/actions/cache/blob/main/RELEASES.md with the new version and changes in the ## Changelog section.
  6. Run licensed cache to update the license report.
  7. Run licensed status and resolve any warnings by updating the https://github.com/actions/cache/blob/main/.licensed.yml file with the exceptions.
  8. Commit your changes and push your branch upstream.
  9. Open a pull request against main and get it reviewed and merged.
  10. Draft a new release https://github.com/actions/cache/releases use the same version number used in package.json
    1. Create a new tag with the version number.
    2. Auto generate release notes and update them to match the changes you made in RELEASES.md.
    3. Toggle the set as the latest release option.
    4. Publish the release.
  11. Navigate to https://github.com/actions/cache/actions/workflows/release-new-action-version.yml
    1. There should be a workflow run queued with the same version number.
    2. Approve the run to publish the new version and update the major tags for this action.

Changelog

5.0.4

  • Bump minimatch to v3.1.5 (fixes ReDoS via globstar patterns)
  • Bump undici to v6.24.1 (WebSocket decompression bomb protection, header validation fixes)
  • Bump fast-xml-parser to v5.5.6

5.0.3

5.0.2

  • Bump @actions/cache to v5.0.3 #1692

5.0.1

  • Update @azure/storage-blob to ^12.29.1 via @actions/cache@5.0.1 #1685

5.0.0

[!IMPORTANT] actions/cache@v5 runs on the Node.js 24 runtime and requires a minimum Actions Runner version of 2.327.1.

... (truncated)

Commits
  • 27d5ce7 Merge pull request #1747 from actions/yacaovsnc/update-dependency
  • f280785 licensed changes
  • 619aeb1 npm run build generated dist files
  • bcf16c2 Update ts-http-runtime to 0.3.5
  • 6682284 Merge pull request #1738 from actions/prepare-v5.0.4
  • e340396 Update RELEASES
  • 8a67110 Add licenses
  • 1865903 Update dependencies & patch security vulnerabilities
  • 5656298 Merge pull request #1722 from RyPeck/patch-1
  • 4e380d1 Fix cache key in examples.md for bun.lock
  • 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)

Developer and others added 30 commits December 31, 2025 16:16
实现内容:
- 内存管理层: DeviceBuffer, MemoryManager, StreamManager
- 像素操作: 反色、灰度化、亮度调整
- 卷积操作: 高斯模糊、Sobel 边缘检测 (Shared Memory 优化)
- 直方图: 计算和均衡化 (原子操作 + 并行规约)
- 图像缩放: 双线性插值、最近邻插值
- 流水线处理: CUDA Streams 异步并行
- 完整的单元测试和示例程序
新增功能:
- 形态学操作: 腐蚀、膨胀、开运算、闭运算、梯度、顶帽、黑帽
- 阈值处理: 全局阈值、自适应阈值、Otsu 自动阈值
- 颜色空间: RGB/HSV/YUV 转换、通道分离与合并
- 性能基准测试程序

新增文件:
- include/gpu_image/morphology.hpp, threshold.hpp, color_space.hpp
- src/morphology.cu, threshold.cu, color_space.cu
- tests/test_morphology.cpp, test_threshold.cpp, test_color_space.cpp
- benchmarks/benchmark_main.cpp
- 卷积引擎: 切换到 shared memory 版本并支持边界模式参数传递
- 直方图均衡化: 添加 cdfMin 等于总像素数的边界情况处理,避免除零错误
… MemoryManager pool lifecycle, kernel_helpers, RGB-Lab/perspective/separable-conv/bicubic kernels, ImageIO with stb, modernize CMakeLists
- README.md is now English (default)
- README.zh-CN.md is Chinese
- Standardized language switcher links in both files
- Add SEO metadata (url, baseurl, author, repository)
- Add jekyll-seo-tag plugin
- Add kramdown GFM + rouge config
- Add layout defaults
- Add exclude list for source/build files
- Set show_downloads: false
- Set cancel-in-progress: true in pages.yml
Check for nvcc before enabling CUDA so configuration errors are explicit instead of cryptic.
Fix geometric boundary sampling, remove shared convolution kernel state across streams, and add missing parameter validation. Strengthen regression tests, make local CUDA builds compatible with older NVCC, and ensure CI runs the test suite with aligned docs and formatting config.
- Add docs/ directory with complete bilingual documentation (EN/ZH)
  - quickstart.md / quickstart.zh-CN.md - 5-minute quick start
  - installation.md / installation.zh-CN.md - detailed setup guide
  - architecture.md / architecture.zh-CN.md - design overview
  - performance.md / performance.zh-CN.md - optimization guide
  - faq.md / faq.zh-CN.md - common questions
  - api/ / api.zh-CN/ - complete API reference (10 modules)
  - examples/ - extended tutorials

- Refactor changelog/ with professional bilingual format
  - Add HISTORY.md as development archive summary
  - Rewrite all changelog entries with English/Chinese dual language

- Update README.md with enhanced content and documentation links

- Update GitHub Pages workflow to include docs/

Part of release v2.0.0 preparation
…ention

- Move requirements to specs/product/gpu-image-processing-requirements.md
- Move design to specs/rfc/0001-gpu-image-processing-design.md
- Move tasks to specs/rfc/0001-gpu-image-processing-tasks.md
- Remove legacy .kiro directory
- Add specs/README.md with navigation guide

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
- Move installation and quickstart to docs/setup/
- Move performance, faq, examples to docs/tutorials/
- Move architecture docs to docs/architecture/
- Update docs/README.md and README.zh-CN.md with new paths
- Add specs links to documentation entry pages
- Remove empty directories (advanced, guides, examples.zh-CN)

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
- Add SDD philosophy declaration and directory context
- Define 4-step AI agent workflow (Review, Spec-First, Implement, Test)
- Add code generation rules for spec compliance
- Update CONTRIBUTING.md to reference new specs location
- Clarify specs vs documentation separation

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
- Ensure README.md is English default with Chinese link
- Update documentation links to reflect new structure
- Clean up root markdown files

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
- Update pages.yml workflow for new docs structure
- Update _config.yml for Jekyll configuration
- Update CHANGELOG.md and changelog/ files

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
- Add DOCUMENTATION_REORGANIZATION_SUMMARY.md with migration guide
- Add DOCUMENTATION_OVERHAUL_SUMMARY.md
- Add PAGES_OPTIMIZATION_SUMMARY.md
- Add RELEASE_NOTES.md and RELEASE_v2.1.0.md
- Add create_release.sh script
- Add _sass/ and assets/ directories

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
Apply clang-format to fix CI format check failures across all
C++/CUDA source files to comply with the project's code style.
LessUp and others added 18 commits April 17, 2026 01:36
- Fix clang-format violation in cuda_error.cpp (match clang-format-14 style)
- Update actions/checkout from v4 to v6 in both CI jobs
- Update actions/configure-pages from v5 to v6
- Update actions/upload-pages-artifact from v3 to v5
- Update actions/deploy-pages from v4 to v5
- Remove invalid 'enablement' parameter from configure-pages action

These updates align with dependabot proposals and resolve CI failures.

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
- Remove actions/configure-pages@v5 which causes TypeError
- The action appears to have a bug that prevents Pages from building
- Jekyll build can proceed without the configure-pages step

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
- Fix actions/checkout v6 -> v4
- Fix actions/upload-pages-artifact v5 -> v3
- Fix actions/deploy-pages v5 -> v4
- Add [[nodiscard]] to StreamManager::acquireStream()
- Add thread-safety documentation for StreamManager
- Add error handling in StreamManager::destroyStreams() destructor
- Add alpha range validation [0,1] for blend() function
- Add upper bound (31) for bilateral filter kernel size
Bug fixes:
- Add noexcept to DeviceBuffer::release() for safe destructor use
- Add noexcept to PipelineProcessor::destroyStreams()
- Add error handling in ImageProcessor destructor
- Handle cudaFree and cudaStreamDestroy errors silently in destructors

Docs improvements:
- Add performance benchmark table to index.md
- Add Discussions link to navigation
- Improve tagline and description
- Add project stats badges
- Add API Reference button on home page
- Add kernel size upper bound (31) check in boxFilter
- Add strength validation in sharpen function
- Add input validation in resizeByScale and resizeFit
- Fix integer overflow risk in arithmetic operations by using size_t
- Add overflow check before casting to int for kernel launches
Format code to pass CI clang-format check.
- Introduced RFC 0001 detailing the architecture and design of a CUDA-based high-performance image processing library.
- Added comprehensive task list for implementation phases, covering memory management, pixel operations, convolution, histogram calculation, image scaling, and high-level API.
- Established testing specifications including unit tests and property-based tests to ensure correctness properties.
- Created README for testing specifications outlining the dual testing approach and BDD feature files.
- Added Step 10: SMART Requirements Validation to assess functional requirements against SMART criteria.
- Introduced Step 11: Holistic Quality Assessment to evaluate document flow, dual audience effectiveness, and compliance with BMAD principles.
- Created Step 12: Completeness Validation to ensure no template variables remain and all sections are complete.
- Developed Step 13: Validation Report Complete to summarize findings and present actionable next steps to the user.
- Established a structured workflow architecture with clear execution protocols and mandatory sequences for each validation step.
….0 compatibility

The 'auto' color_scheme value is not supported in Just the Docs v0.9.0,
causing Jekyll build failures with 'File to import not found or unreadable: ./color_schemes/auto'.
Changed to 'light' (default theme) to resolve GitHub Pages workflow failure.

Fixes GitHub Actions run 24841396343

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- Unified version number to 2.1.0 across all files
- Locked stb dependency to specific commit for reproducibility
- Fixed .gitignore conflict with .vscode files
- Simplified CI workflow by removing unnecessary CMakePresets checks
- Added CMakePresets.json for standardized build configurations
- Added VS Code configuration (extensions.json, settings.json)
- Updated copilot-instructions.md with project-specific guidance
- Removed specs.legacy/ directory (migrated to openspec/)
- Removed redundant changelog documentation files
- Added .omc/ to .gitignore (runtime state files)
## Changes

### Configuration
- Add CLAUDE.md for Claude Code integration
- Update project-memory.json with build commands and conventions
- Fix AGENTS.md copilot-instructions.md sync status

### Code Quality
- Add cudaFree error handling in memory_manager.cpp
- Format test code with clang-format

### Documentation
- Consolidate architecture diagram references to openspec/specs/architecture.md
- Archive changelog/ directory to changelog.archive/

### GitHub
- Update repository description and topics
- Set homepage URL to GitHub Pages
- Remove all BMAD method skills (41 skills, ~2.2MB)
- Delete _bmad/ and _bmad-output/ directories
- Delete changelog.archive/ (historical changelogs)
- Delete openspec/changes/archive/ (archived proposals)
- Remove redundant docs: project-context.md, README.md
- Update AGENTS.md: simplify OpenSpec workflow, fix directory references
- Update GitHub repo description with clearer value proposition

Total reduction: ~2.5MB of redundant documentation and skills
…I-navigability

This commit introduces significant architectural depth improvements:

## New Modules

- **ExecutionContext**: Unified execution policy and memory management
- **ImageAllocator**: Centralized image buffer allocation with optional pooling
- **ImageOperator**: Base interface for polymorphic operators with pipeline support
- **OperatorPipeline**: Chain multiple operators with automatic buffer management
- **OperatorRegistry**: Runtime operator discovery and creation by name

## Key Features

- ExecutionPolicy hides CUDA streams (Sync/Async/Batch modes)
- PipelineBuilder for fluent processing chain construction
- Thread-safe memory pooling using std::atomic
- [[nodiscard]] attributes on all return-value methods
- Backward compatible: existing Operator static methods unchanged

## API Improvements

- recycleToPool() replaces release() with clearer semantics
- ResizeOperator::byScale() and byDimensions() named constructors
- PipelineBuilder returns invalid image instead of throwing on missing input

## Files Changed

- 16 modified files
- 9 new files (headers, sources, tests, docs)
- +1,800 lines of new code
- 35 new test cases

## Documentation

- CONTEXT.md: Domain model and architectural depth analysis
- ADR-0001: Architecture decision record
- ARCHITECTURE_REFACTORING.md: Migration guide
- Migrate documentation system from Jekyll + Just the Docs to VitePress
- Add NVIDIA green (#76B900) themed design with dark mode support
- Integrate Mermaid diagrams for architecture visualization
- Add LLMs.txt plugin for AI-friendly documentation
- Create bilingual (EN/ZH) documentation with 48 markdown files
- Add performance benchmarks with comparison charts
- Add academic references with BibTeX citations
- Create GitHub Actions workflow for automatic deployment
- Add changelog sync script for version tracking

Breaking changes:
- Remove old Jekyll configuration and themes
- Restructure documentation directory layout

🤖 Generated with [Claude Code](https://claude.ai/code)
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v4...v5)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

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

dependabot Bot commented on behalf of github May 14, 2026

Labels

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

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

@dependabot dependabot Bot requested a review from LessUp as a code owner May 14, 2026 07:47
@LessUp LessUp closed this May 22, 2026
@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github May 22, 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/cache-5 branch May 22, 2026 09:17
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.

2 participants