Skip to content

build(deps): bump actions/checkout from 4 to 6 - #3

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/github_actions/actions/checkout-6
Closed

build(deps): bump actions/checkout from 4 to 6#3
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/github_actions/actions/checkout-6

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 8, 2026

Copy link
Copy Markdown

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.3

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

... (truncated)

Commits
  • df4cb1c Update changelog for v6.0.3 (#2446)
  • 1cce339 Fix checkout init for SHA-256 repositories (#2439)
  • 900f221 fix: expand merge commit SHA regex and add SHA-256 test cases (#2414)
  • 0c366fd Update changelog (#2357)
  • de0fac2 Fix tag handling: preserve annotations and explicit fetch-tags (#2356)
  • 064fe7f Add orchestration_id to git user-agent when ACTIONS_ORCHESTRATION_ID is set (...
  • 8e8c483 Clarify v6 README (#2328)
  • 033fa0d Add worktree support for persist-credentials includeIf (#2327)
  • c2d88d3 Update all references from v5 and v4 to v6 (#2314)
  • 1af3b93 update readme/changelog for v6 (#2311)
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Jun 8, 2026
@dependabot
dependabot Bot force-pushed the dependabot/github_actions/actions/checkout-6 branch from b7d331b to 274d0c5 Compare June 8, 2026 02:53
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 force-pushed the dependabot/github_actions/actions/checkout-6 branch from 274d0c5 to 8ac996f Compare June 10, 2026 04:33
@dependabot @github

dependabot Bot commented on behalf of github Jun 22, 2026

Copy link
Copy Markdown
Author

Superseded by #7.

@dependabot dependabot Bot closed this Jun 22, 2026
@dependabot
dependabot Bot deleted the dependabot/github_actions/actions/checkout-6 branch June 22, 2026 22:05
ezpl added a commit that referenced this pull request Jul 15, 2026
Audit findings from issue #29 (0z00z0/HyperVManagerTray):

- (HIGH #1) UpdateSwitchBindingAsync now returns a SwitchBindOutcome
  (Bound / AlreadyBound / Failed) instead of Task. A failed bind was
  previously indistinguishable from an already-bound no-op (both false),
  so NetworkMonitor cached the target adapter as bound and never retried.
  NetworkMonitor now records the skip-cache only on a non-failed outcome.

- (HIGH #2) The skip-cache is keyed by (switch -> adapter) via a
  Dictionary instead of one scalar _lastBoundAdapterInterface, so a 2nd
  bridged switch sharing the same NIC as the first now binds correctly.

- (HIGH #3) Adapter enumeration (GetAllNetworkInterfaces/GetIPProperties)
  moved off the UI thread with Task.Run in NetworkMonitor.ForceEvaluateAsync
  ("Re-check network now"), TrayMenu.AddCurrentAsBridged, and
  AdapterRenameFlow (post-await GetPhysicalAdapters).

- (MED #4) VmService StartWatcher/StopWatcher COM Connect()/Start()/Stop()
  bodies moved onto Task.Run; _subLock counter/flag state preserved, with a
  _watcherStarting guard against a duplicate start and self-teardown if all
  subscribers leave while connecting.

- (MED #5) A Wi-Fi adapter (Msvm_WiFiPort) can never bind via the
  Msvm_ExternalEthernetPort path. CurrentNetworkInfo gains IsWireless and
  "Add current network as a bridged rule" rejects wireless adapters up front.
  New pure AdapterMatcher.IsBridgeableAdapterType predicate + unit tests.

Scenario C re-home / duplicate-vNIC WMI mechanism left untouched (gated on
the live protocol). Host-networking changes need live validation.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
ezpl added a commit that referenced this pull request Jul 15, 2026
Audit findings from issue #30 (0z00z0/HyperVManagerTray):

- (HIGH #1) A graceful Shutdown that the guest cancels/hangs stayed in the
  Running phase forever, disabling the card's buttons for good. Dashboard
  now ages the overlay out after a ~2 min deadline (VmStateUi.ShutdownDeadline)
  via a per-VM _opSince timestamp, re-enabling the buttons.

- (HIGH #2) Tray VM-Power submenu now filters items by the VM's current
  state (VmService exposes GetCachedStatusesSync; verbs come from
  VmStateUi.AllowedVerbs), and a Failed power outcome is surfaced as a tray
  balloon (App.OnVmOperationFailed) when the dashboard isn't visible.

- (MED #3) A transitional state (Saving/Stopping/Starting/Pausing/Resuming/
  Snapshotting) now maps to a distinct VmStateUi.Shape.Transition that
  renders no power buttons on the dashboard card and a disabled hint in the
  tray; the state watcher rebuilds the card when the transition lands.

- (MED #4) A dead WMI watcher / broken scope now self-recovers:
  VmService.RecoverWatcher disposes the watcher, nulls the scope, and
  re-runs EnsureScope+StartWatcher with escalating backoff, triggered by the
  watcher's Stopped event or N consecutive RefreshCore failures.

- (MED-LOW #5) TriggerRefresh no longer drops a 2nd event that arrives
  mid-refresh: a _refreshPending flag makes the in-flight pass run once more,
  with a tail-race re-trigger.

- (LOW #6) Start & Connect now aborts the vmconnect launch when the Start
  actually fails: WaitUntilRunningAsync returns StartReadiness
  (Running/Failed/Timeout) by also watching OperationProgress; a timeout
  still connects (vmconnect tolerates a booting VM).

- (LOW #7) A sticky "Failed:" overlay ages out after ~45 s
  (VmStateUi.FailedOverlayLifetime), same _opSince mechanism as #1.

New pure Helpers/VmStateUi.cs (shape mapping, allowed verbs, overlay-expiry
deadlines) with unit tests. Also moved VmService watcher COM Start/Stop off
the UI thread as part of the shared #29/#30 threading pass.

Power/state changes need Espen's live validation.

Co-Authored-By: Claude Opus 4.8 <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.

0 participants