Skip to content

chore(deps): update github-actions: Bump actions/checkout from 4 to 6#5

Merged
scottschreckengaust merged 1 commit intomainfrom
dependabot/github_actions/actions/checkout-6
Feb 5, 2026
Merged

chore(deps): update github-actions: Bump actions/checkout from 4 to 6#5
scottschreckengaust merged 1 commit intomainfrom
dependabot/github_actions/actions/checkout-6

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 5, 2026

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps actions/checkout from 4 to 6.

Release notes

Sourced from actions/checkout's releases.

v6.0.0

What's Changed

Full Changelog: actions/checkout@v5.0.0...v6.0.0

v6-beta

What's Changed

Updated persist-credentials to store the credentials under $RUNNER_TEMP instead of directly in the local git config.

This requires a minimum Actions Runner version of v2.329.0 to access the persisted credentials for Docker container action scenarios.

v5.0.1

What's Changed

Full Changelog: actions/checkout@v5...v5.0.1

v5.0.0

What's Changed

⚠️ Minimum Compatible Runner Version

v2.327.1
Release Notes

Make sure your runner is updated to this version or newer to use this release.

Full Changelog: actions/checkout@v4...v5.0.0

v4.3.1

What's Changed

Full Changelog: actions/checkout@v4...v4.3.1

v4.3.0

What's Changed

... (truncated)

Changelog

Sourced from actions/checkout's changelog.

Changelog

v6.0.2

v6.0.1

v6.0.0

v5.0.1

v5.0.0

v4.3.1

v4.3.0

v4.2.2

v4.2.1

v4.2.0

v4.1.7

v4.1.6

... (truncated)

Commits

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)

Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4...v6)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Feb 5, 2026
@dependabot dependabot bot requested a review from a team February 5, 2026 23:21
Copy link
Member

@scottschreckengaust scottschreckengaust left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@scottschreckengaust scottschreckengaust added this pull request to the merge queue Feb 5, 2026
Merged via the queue into main with commit 11dcca4 Feb 5, 2026
1 check passed
@scottschreckengaust scottschreckengaust deleted the dependabot/github_actions/actions/checkout-6 branch February 5, 2026 23:45
icarthick added a commit to icarthick/agent-plugins that referenced this pull request Feb 27, 2026
)

Add migration-to-aws plugin documentation in three sections:

1. Directory Structure
   - Added migration-to-aws plugin entry with skills/gcp-to-aws structure
   - Maintains alphabetical ordering after amazon-location-service

2. MCP Servers Section
   - Added new '### migration-to-aws' subsection
   - Lists awsknowledge (HTTP) and awspricing (stdio) servers
   - Aligns with plugin's actual MCP configuration

3. TL;DR Pitch
   - Updated marketplace description to include migration-to-aws
   - Added brief description: 'GCP-to-AWS migration with resource discovery,
     architecture mapping, and cost analysis'
   - Now describes all three available plugins

Build: All linters, manifests, security scans pass ✓

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
icarthick added a commit to icarthick/agent-plugins that referenced this pull request Feb 27, 2026
awslabs#3, awslabs#5, awslabs#6, awslabs#7)

1. Add missing edges field to gcp-resource-clusters.json (Issue awslabs#3)
   - Problem: output-schema.md example lacked edges array
   - But: discover-iac.md lists edges as CRITICAL field
   - And: clustering-algorithm.md includes edges in output
   - Fix: Added edges array with relationship types to output-schema.md
   - Fields: from, to, relationship_type

2. Align execution.json risks schema (Issue awslabs#5)
   - Problem: output-schema.md had 4 fields, execute.md had 3
   - output-schema: category, probability, impact, mitigation
   - execute.md: category, probability, mitigation (missing impact)
   - Naming: 'data loss' vs 'data_loss'
   - Fix: Added impact field to execute.md
   - Fix: Aligned naming to use underscores (data_loss, performance_regression)
   - Added example with multiple risks

3. Align cluster ID naming format (Issue awslabs#6)
   - Problem: clustering-algorithm.md used 4-component format with region
   - But: discover-iac.md used 3-component format without region
   - clustering-algorithm: {service_category}_{service_type}_{gcp_region}_{sequence}
   - discover-iac: {type}_{subtype}_{sequence}
   - Fix: Updated discover-iac.md to use 4-component format
   - Now: compute_cloudrun_us-central1_001 (includes region)

4. Add missing fields to aws-design.json resource schema (Issue awslabs#7)
   - Problem: design.md example lacked gcp_config field
   - output-schema.md Design Resource Schema includes gcp_config
   - Fix: Added gcp_config with example values (machine_type, zone, boot_disk_size_gb)
   - Now: Full resource schema includes both GCP and AWS configuration

Result: All JSON schemas now consistent across files

Build: All linters, manifests, security scans pass ✓

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
theagenticguy added a commit to theagenticguy/agent-plugins that referenced this pull request Mar 5, 2026
- Replace wildcard IAM permissions with least-privilege read-only actions
  in SKILL.md (Copilot review comment awslabs#5)
- Add missing `| limit 100` to Performance Analysis query example in
  SKILL.md (Copilot review comment awslabs#4)
- Fix DynamoDB Throttles alarm pattern to use ReadThrottleEvents /
  WriteThrottleEvents instead of UserErrors (Copilot review comment awslabs#3)
- Fix lookup_events example to use 90-day window matching API limits
  (Copilot review comment awslabs#1)
- Remove orphaned pattern numbering ("Pattern 2/3/4" with no Pattern 1)
  in security-auditing.md (Copilot review comment awslabs#2)
- Replace all "steering file" terminology with "reference" across all 8
  reference files for consistency with plugin conventions

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant