Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Upgrade GitHub Actions to latest versions#854

Merged
tonychang04 merged 1 commit into
InsForge:mainInsForge/InsForge:mainfrom
salmanmkc:upgrade-github-actions-node24-generalsalmanmkc/InsForge:upgrade-github-actions-node24-generalCopy head branch name to clipboard
Mar 13, 2026
Merged

Upgrade GitHub Actions to latest versions#854
tonychang04 merged 1 commit into
InsForge:mainInsForge/InsForge:mainfrom
salmanmkc:upgrade-github-actions-node24-generalsalmanmkc/InsForge:upgrade-github-actions-node24-generalCopy head branch name to clipboard

Conversation

@salmanmkc

@salmanmkc salmanmkc commented Mar 13, 2026

Copy link
Copy Markdown
Contributor

Bumps GitHub Actions to their latest versions for bug fixes and security patches.

Changes

Action Old Version(s) New Version Compare Files
aws-actions/configure-aws-credentials v4 v6 Diff build-image.yml
docker/build-push-action v5 v7 Diff build-image.yml, ci-premerge-check.yml
docker/login-action v3 v4 Diff build-image.yml
docker/metadata-action v5 v6 Diff build-image.yml
docker/setup-buildx-action v3 v4 Diff build-image.yml
docker/setup-qemu-action v3 v4 Diff build-image.yml
imjasonh/setup-crane 31b88ef 6da1ae0 Diff build-image.yml

Release Notes

Release notes for docker/setup-qemu-action

v4.0.0

...truncated

v3.7.0

...truncated

v3.6.0

Full Changelog: docker/setup-qemu-action@v3.5.0...v3.6.0

v3.5.0

Full Changelog: docker/setup-qemu-action@v3.4.0...v3.5.0

v3.4.0

Full Changelog: docker/setup-qemu-action@v3.3.0...v3.4.0

Release notes for docker/setup-buildx-action

v4.0.0

...truncated

v3.12.0

...truncated

v3.11.1

Full Changelog: docker/setup-buildx-action@v3.11.0...v3.11.1

v3.11.0

Full Changelog: docker/setup-buildx-action@v3.10.0...v3.11.0

v3.10.0

Full Changelog: docker/setup-buildx-action@v3.9.0...v3.10.0

Release notes for docker/login-action

v4.0.0

...truncated

v3.7.0

Full Changelog: https://g

...truncated

v3.6.0

...truncated

v3.5.0

...truncated

v3.4.0

...truncated

Release notes for docker/metadata-action

v6.0.0

...truncated

v5.10.0

Full Changelog: docker/metadata-action@v5.9.0...v5.10.0

v5.9.0

...truncated

v5.8.0

...truncated

v5.7.0

...truncated

Release notes for docker/build-push-action

v7.0.0

...truncated

v6.19.2

Full Changelog: docker/build-push-action@v6.19.1...v6.19.2

v6.19.1

Full Changelog: docker/build-push-action@v6.19.0...v6.19.1

v6.19.0

...truncated

v6.18.0

[!NOTE]
Build summary is now supported with Docker Build Cloud.

Full Changelog: docker/build-push-action@v6.17.0...v6.18.0

Release notes for aws-actions/configure-aws-credentials

v6.0.0

6.0.0 (2026-02-04)

⚠ BREAKING CHANGES

  • Update action to use node24 Note this requires GitHub action runner version v2.327.1 or later (#1632) (a7a2c11)

Fe

...truncated

v5.1.1

5.1.1 (2025-11-24)

Miscellaneous Chores

  • release 5.1.1 (56d6a58)
  • various dependency updates

v5.1.0

5.1.0 (2025-10-06)

Features

...truncated

v5.0.0

5.0.0 (2025-09-03)

⚠ BREAKING CHANGES

Features

  • add skip OIDC option (#1458) (8c45f6b)
  • Cleanup input handling. Changes invalid boo

...truncated

v4.3.1

4.3.1 (2025-08-04)

Bug Fixes

Release notes for imjasonh/setup-crane

v0.5

What's Changed

New Contributors

Full Changelog: imjasonh/setup-crane@v0.4...v0.5

Notes

Actions that were previously pinned to commit SHAs remain pinned to SHAs (updated to the latest release SHA).

Worth running the workflows on a branch before merging to make sure everything still works.

Validation Warnings

The following issues were detected by actionlint:

  • build-image.yml: .github/workflows/build-image.yml:103:9: shellcheck reported issue in this script: SC2086:info:4:12: Double quote to prevent globbing and word splitting [shellcheck]
  • build-image.yml: |
  • build-image.yml: 103 | run: |

Summary by CodeRabbit

  • Chores
    • Updated CI/CD build pipelines to use newer versions of Docker and deployment tools.
    • Enhanced build process with improved caching strategies and metadata configuration.

Signed-off-by: Salman Muin Kayser Chishti <13schishti@gmail.com>
@coderabbitai

coderabbitai Bot commented Mar 13, 2026

Copy link
Copy Markdown
Contributor

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: e3ac6a82-0e88-4dd5-8afc-0d75eca7c785

📥 Commits

Reviewing files that changed from the base of the PR and between 03c6aa2 and df19309.

📒 Files selected for processing (2)
  • .github/workflows/build-image.yml
  • .github/workflows/ci-premerge-check.yml

Walkthrough

Multiple GitHub Actions in CI/CD workflows are upgraded to newer major versions, including Docker tooling (setup-qemu, setup-buildx, login, metadata, build-push) and AWS credential configuration. The primary build workflow receives expanded caching and build argument configurations alongside the version bump for docker/build-push-action.

Changes

Cohort / File(s) Summary
Primary Build Workflow
.github/workflows/build-image.yml
Upgraded docker/setup-qemu-action (v3→v4), docker/setup-buildx-action (v3→v4), docker/login-action (v3→v4), docker/metadata-action (v5→v6), docker/build-push-action (v5→v7), aws-actions/configure-aws-credentials (v4→v6), and imjasonh/setup-crane. Expanded build-push step with caching configuration, build arguments (VERSION, BUILD_DATE, COMMIT_SHA, VITE_PUBLIC_POSTHOG_KEY), and explicit push settings.
CI Premerge Workflow
.github/workflows/ci-premerge-check.yml
Upgraded docker/build-push-action from v5 to v7 in the Docker image build step.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

Poem

🐰 GitHub Actions dance with glee,
Version bumps from three to... see!
Caches built and arguments pass,
Docker runs with newfound class. 🚀

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title 'Upgrade GitHub Actions to latest versions' directly and clearly summarizes the main change: upgrading multiple GitHub Actions to newer versions across workflow files.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
📝 Coding Plan
  • Generate coding plan for human review comments

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Tip

CodeRabbit can scan for known vulnerabilities in your dependencies using OSV Scanner.

OSV Scanner will automatically detect and report security vulnerabilities in your project's dependencies. No additional configuration is required.

@tonychang04
tonychang04 self-requested a review March 13, 2026 16:01
@tonychang04
tonychang04 merged commit 03ad6e0 into InsForge:main Mar 13, 2026
5 checks passed
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

Morty Proxy This is a proxified and sanitized view of the page, visit original site.