') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); Bump warpdotdev/oz-agent-action from 1.0.12 to 1.0.26 by dependabot[bot] · Pull Request #15 · linuxhex/cute · GitHub
Skip to content

Bump warpdotdev/oz-agent-action from 1.0.12 to 1.0.26 - #15

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/warpdotdev/oz-agent-action-1.0.26
Open

Bump warpdotdev/oz-agent-action from 1.0.12 to 1.0.26#15
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/warpdotdev/oz-agent-action-1.0.26

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubAug 10, 2026

Copy link
Copy Markdown
Contributor

Bumps warpdotdev/oz-agent-action from 1.0.12 to 1.0.26.

Release notes

Sourced from warpdotdev/oz-agent-action's releases.

v1.0.26

What's Changed

  • Add computer_use input for cloud agent runs (#38) (851b4af)

Full Changelog: warpdotdev/oz-agent-action@v1.0.25...v1.0.26

v1.0.25

Add computer_use input for cloud agent runs.

When cloud: true and computer_use: true, the action passes --computer-use to oz agent run-cloud.

Pin factory workflows to v1.0.25 (or commit 89f7386) until PR #38 merges to main.

v1.0.24

What's Changed

  • build(deps-dev): bump js-yaml (#36) (fcbed2c)

Full Changelog: warpdotdev/oz-agent-action@v1.0.23...v1.0.24

v1.0.23

What's Changed

  • fix: update undici to >=6.27.0 to resolve CVE-2026-12151 and related CVEs (#30) (8ba4e14)

Full Changelog: warpdotdev/oz-agent-action@v1.0.22...v1.0.23

v1.0.22

What's Changed

  • feat: add environment option for cloud agent runs (#35) (a6bbbc2)

Full Changelog: warpdotdev/oz-agent-action@v1.0.21...v1.0.22

v1.0.21

What's Changed

  • feat: expose cloud and host in reusable workflows (#34) (1922f22)

Full Changelog: warpdotdev/oz-agent-action@v1.0.20...v1.0.21

v1.0.20

What's Changed

  • Bump vite in the npm_and_yarn group across 1 directory (#27) (9b98ba4)

Full Changelog: warpdotdev/oz-agent-action@v1.0.19...v1.0.20

v1.0.19

... (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 [warpdotdev/oz-agent-action](https://github.com/warpdotdev/oz-agent-action) from 1.0.12 to 1.0.26.
- [Release notes](https://github.com/warpdotdev/oz-agent-action/releases)
- [Commits](warpdotdev/oz-agent-action@ce1621a...851b4af)
---
updated-dependencies:
- dependency-name: warpdotdev/oz-agent-action
dependency-version: 1.0.26
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Aug 10, 2026
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filegithub_actionsPull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants