Skip to content

Releases: j7an/shared-workflows

v4.2.4

Choose a tag to compare

@github-actions github-actions released this 21 Jul 03:11
a599e2c

What's Changed

  • deps: bump actions/setup-node from 6.4.0 to 7.0.0 by @dependabot[bot] in #115
  • deps: bump github/codeql-action/analyze from 4.37.0 to 4.37.1 by @dependabot[bot] in #116
  • deps: bump github/codeql-action/upload-sarif from 4.37.0 to 4.37.1 by @dependabot[bot] in #117
  • deps: bump zizmorcore/zizmor-action from 0.5.7 to 0.6.0 by @dependabot[bot] in #118
  • deps: bump github/codeql-action/init from 4.37.0 to 4.37.1 by @dependabot[bot] in #119

Full Changelog: v4.2.3...v4.2.4

v4.2.3

Choose a tag to compare

@github-actions github-actions released this 14 Jul 05:00
e22b38d

What's Changed

  • deps: bump github/codeql-action/analyze from 4.36.3 to 4.37.0 by @dependabot[bot] in #108
  • deps: bump astral-sh/setup-uv from 8.2.0 to 8.3.2 by @dependabot[bot] in #113
  • deps: bump github/codeql-action/upload-sarif from 4.36.3 to 4.37.0 by @dependabot[bot] in #109
  • deps: bump github/codeql-action/init from 4.36.3 to 4.37.0 by @dependabot[bot] in #110
  • deps: bump trufflesecurity/trufflehog from 3.95.8 to 3.95.9 by @dependabot[bot] in #111
  • test: prevent literal action pin snapshots by @j7an in #114
  • deps: bump step-security/harden-runner from 2.19.4 to 2.20.0 by @dependabot[bot] in #112

Full Changelog: v4.2.2...v4.2.3

v4.2.2

Choose a tag to compare

@github-actions github-actions released this 09 Jul 03:54
dc9105a

What's Changed

  • Fix release provenance and TestPyPI verification by @j7an in #107

Full Changelog: v4.2.1...v4.2.2

v4.2.1

Choose a tag to compare

@github-actions github-actions released this 08 Jul 03:41
e99dab3

What's Changed

  • Make security-scan action-pin tests semantic by @j7an in #105
  • deps: bump github/codeql-action/analyze from 4.36.2 to 4.36.3 by @dependabot[bot] in #100
  • deps: bump github/codeql-action/upload-sarif from 4.36.2 to 4.36.3 by @dependabot[bot] in #101
  • deps: bump github/codeql-action/init from 4.36.2 to 4.36.3 by @dependabot[bot] in #102

Full Changelog: v4.2.0...v4.2.1

v4.2.0

Choose a tag to compare

@github-actions github-actions released this 07 Jul 07:23
9b25b59

What's Changed

  • deps: bump zizmorcore/zizmor-action from 0.5.6 to 0.5.7 by @dependabot[bot] in #97
  • deps: bump trufflesecurity/trufflehog from 3.95.6 to 3.95.8 by @dependabot[bot] in #99
  • feat(publish-npm): reusable npm trusted-publishing workflow by @j7an in #103

Full Changelog: v4.1...v4.2.0

v4.1.0

Choose a tag to compare

@github-actions github-actions released this 28 Jun 22:02
5997f20

What's Changed

  • deps: bump actions/checkout from 6.0.3 to 7.0.0 by @dependabot[bot] in #87
  • feat(safety): add reusable non-bot dependency gate by @j7an in #92
  • feat(security): add reusable security scan workflow by @j7an in #93
  • feat: add reusable pre-commit autoupdate workflow by @j7an in #94
  • Add caller-owned PyPI Trusted Publishing template by @j7an in #95
  • docs: make AGENTS.md canonical by @j7an in #96

Full Changelog: v4.0...v4.1.0

v4.0.0

Choose a tag to compare

@github-actions github-actions released this 12 Jun 01:24
dd7254c

What's Changed

  • deps: bump actions/checkout from 6.0.2 to 6.0.3 by @dependabot[bot] in #83
  • deps: bump astral-sh/setup-uv from 8.1.0 to 8.2.0 by @dependabot[bot] in #84
  • feat(safety)!: opt-in release-age policy and default-on auto-merge (#85) by @j7an in #86

Full Changelog: v3...v4.0.0

v3.0.2

Choose a tag to compare

@github-actions github-actions released this 06 Jun 17:14
29bcd57

What's Changed

  • deps: bump step-security/harden-runner from 2.19.3 to 2.19.4 by @dependabot[bot] in #70
  • fix: clear Zizmor 1.25 findings (github-app + online-audit 401) by @j7an in #78
  • deps: bump zizmorcore/zizmor-action from 0.5.3 to 0.5.6 by @dependabot[bot] in #64
  • fix(safety): explicit fork-PR behavior for read-only tokens (#79) by @j7an in #80
  • chore: reliable workflow linting via lint-workflows.sh (#81) by @j7an in #82

Full Changelog: v3.0.1...v3.0.2

v3.0.1

Choose a tag to compare

@github-actions github-actions released this 28 May 07:28
522610f

What's Changed

  • fix(safety): make dependency-safety/gate status clickable via env vars by @j7an in #77

Full Changelog: v3.0.0...v3.0.1

v3.0.0

Choose a tag to compare

@github-actions github-actions released this 24 May 15:40
a8655fe

Breaking changes

The legacy workflow paths
j7an/shared-workflows/.github/workflows/dependency-cooldown.yml and
.../cooldown-rescan.yml are absent from v3. Consumers still on
those paths should remain on frozen @v2 (last cooldown-bearing release,
no further updates) or migrate their callers to dependency-safety.yml
before moving to @v3. To migrate from v2 to v3:

  1. Add native cooldown to .github/dependabot.yml:
    cooldown:
      default-days: 5
  2. Update caller uses: line:
    - uses: j7an/shared-workflows/.github/workflows/dependency-cooldown.yml@v2
    + uses: j7an/shared-workflows/.github/workflows/dependency-safety.yml@v3
  3. Rename input cooldown_daysminimum_release_age_days.
  4. Drop fail_on_cooldown; use fail_on_age_violation instead.
  5. Remove any caller using cooldown-rescan.yml — no rescan companion.
  6. Update branch protection: rename required status dependency-cooldown / gatedependency-safety / gate.
  7. Remove stale cooldown-pending labels manually.

See README "v2 → v3 migration" for full details.


What's Changed

  • fix(safety): add pyproject.toml parser support for uv/poetry Dependabot PRs by @j7an in #67
  • chore!: remove deprecated cooldown workflows (v2 → v3) by @j7an in #69

Full Changelog: v2...v3.0.0