OffNet Newsroom

Daily topic roundup

Automation / DevOps / IaC

Friday, August 07, 2026 · 7 stories, curated & summarized — click any story for the source.

Hacker News (100+ points) general

GitHub Actions and Pages Report Degraded Availability

GitHub is currently experiencing degraded availability for its Actions and Pages services. The incident was reported on August 6, 2026, and has drawn significant attention from the developer community. Users are advised to check the official status page for real-time updates on service restoration.

  • Monitor GitHub status page for incident resolution and service restoration.
  • Avoid critical CI/CD deployments until availability stabilizes.
  • Pages deployments may fail or time out during this degradation window.
  • Check official channels for root cause analysis post-incident.
CHECKLISTDeveloper Response to OutageMonitor status page for updatesAvoid critical CI/CD deploymentsExpect Pages deployment failuresCheck official channels for RCA

GitHub suffered a significant service disruption that rendered Actions and Pages unavailable. The outage effectively halted automated build processes and static site deployments for many engineering teams. This incident highlights the fragility of relying on a single provider for critical development workflows.

  • CI/CD pipelines relying on GitHub Actions are completely blocked during outages.
  • Static site hosting via GitHub Pages is unavailable, affecting documentation and demos.
  • Teams should verify their disaster recovery plans for source control dependencies.
  • Mitigation strategies for single-provider outages need immediate review.

CloudNativePG’s ClusterImageCatalog now allows extension images to be managed alongside the operand, enabling clusters to reference extensions by name alone. This recipe demonstrates deploying a community extension catalog as a single source of truth per PostgreSQL major version. When an extension is added to the catalog, all referencing clusters automatically inherit the correct image, paths, and dependencies without manifest updates.

  • Reference extensions by name only; the operator resolves images and dependencies automatically.
  • Adopt a single versioned source of truth per PostgreSQL major version for consistency.
  • Adding an extension to the catalog propagates it to all referencing clusters instantly.
  • Eliminates the need to modify individual Cluster manifests for extension updates.

AWS Security Hub Extended now includes Supply Chain Security as its tenth category, integrating curated partners Chainguard and Socket. This addition allows teams to detect and block malicious dependencies before they are built into applications, addressing the risks of large-scale open-source adoption. The feature follows the same pay-as-you-go model and streamlined activation as other Extended plan categories, bringing the total curated partner solutions to 23.

  • Supply chain security is now the 10th category in AWS Security Hub Extended.
  • Chainguard and Socket are the curated partners for this new capability.
  • Enables detection and blocking of malicious dependencies prior to build.
  • Maintains pay-as-you-go pricing with no long-term commitments.
  • Total curated partner solutions in Extended plan now reach 23.
BY THE NUMBERS23 Curated Partners in AWS23Total curated partner solutionsSupply chain security is the 10th category

npm has launched staged publishing to mitigate supply chain risks by requiring maintainer approval before a package version becomes installable. Versions are queued and must pass a two-factor authentication challenge to proceed to live status. This security feature is included in npm CLI 11.15.0+ and Node 22.14.0+ alongside new configurable permission flags.

  • npm CLI 11.15.0+ and Node 22.14.0+ support staged publishing by default.
  • Maintainers must approve queued versions via 2FA before they go live.
  • New permission flags allow granular control over publishing workflows.
  • This step adds friction to prevent accidental or malicious releases.
  • Supply chain security is enhanced by introducing a human-in-the-loop gate.
Hacker News (100+ points) general

Herdr joins Y Combinator while keeping its runtime open source

Herdr, a technology startup, has entered the Y Combinator program. The company explicitly stated that its core runtime software will remain open source. This move signals continued commitment to open development despite joining a major accelerator.

  • Herdr is officially part of Y Combinator now.
  • The runtime software remains open source.
  • No change to the open-source licensing model.
AWS What's New awsdatabase ↺ since 08-06

AWS Glue Data Quality removes anomaly detection fees and adds constant baseline mode

AWS Glue Data Quality now offers anomaly detection at no extra cost for ETL jobs. A new observation mode replaces linear trend extrapolation with a constant baseline, reducing false positives for datasets with irregular arrival intervals or flat patterns. This change targets exploratory workflows and interactive analysis where predictable trends are absent.

  • Anomaly detection in ETL jobs is now free, removing previous cost barriers.
  • Constant baseline mode prevents over-extrapolation on flat or random data patterns.
  • Reduces alert noise for irregular data arrival schedules and interactive checks.
  • Improves accuracy for exploratory data analysis and varying workload schedules.
TRADE-OFFGlue Anomaly Detection ModesOld ExtrapolationLinear trend extrapolationHigh false positivesPoor for flat dataNew Constant BaselineConstant baseline modeReduced alert noiseBetter for irregular datavs