Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "7.0.0"
".": "8.0.0"
}
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## [8.0.0](https://github.com/ppat/github-workflows/compare/v7.0.0...v8.0.0) (2026-09-03)


### ⚠ BREAKING CHANGES

* **reusable-workflows:** input param consistency ([#639](https://github.com/ppat/github-workflows/issues/639))

### 🧹 Miscellaneous

* **shipped-dependencies:** update lockfile bun ( -> ) ([#644](https://github.com/ppat/github-workflows/issues/644)) ([ab67f92](https://github.com/ppat/github-workflows/commit/ab67f927d5d7ba86747bc920c82ed9d342f137fb))


### ✨ Features

* **github-actions:** update ppat/homelab-ops-actions (v2.3.2 -> v2.5.0) ([#642](https://github.com/ppat/github-workflows/issues/642)) ([0af4885](https://github.com/ppat/github-workflows/commit/0af48853edf26f72c5534dac56952d043b46c832))
* **reusable-workflows:** input param consistency ([#639](https://github.com/ppat/github-workflows/issues/639)) ([bd2f3f3](https://github.com/ppat/github-workflows/commit/bd2f3f37f1df7073b328fca8ab32c791d98e8d53))
* **shipped-dependencies:** update renovatebot/renovate (44.50.3 -> 44.52.1) ([#643](https://github.com/ppat/github-workflows/issues/643)) ([6a09d59](https://github.com/ppat/github-workflows/commit/6a09d594e06ba2a55dbe63bef4afa2ca2fafb3c4))


### 🚀 Enhancements + Bug Fixes

* **github-actions:** update renovatebot/github-action (v46.2.2 -> v46.2.5) ([#641](https://github.com/ppat/github-workflows/issues/641)) ([3901b8d](https://github.com/ppat/github-workflows/commit/3901b8d6f22e52fc8307e67818f33638c00090fb))

## [7.0.0](https://github.com/ppat/github-workflows/compare/v6.1.0...v7.0.0) (2026-09-03)


Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
permissions:
contents: read # must be restated: any permissions: block zeroes unlisted scopes
packages: write # required on EVERY caller of this workflow, see below
uses: ppat/github-workflows/.github/workflows/build-docker-image.yaml@v7.0.0 # x-release-please-version
uses: ppat/github-workflows/.github/workflows/build-docker-image.yaml@v8.0.0 # x-release-please-version
with:
image_context_path: .
git_ref: ${{ github.head_ref || github.ref }}
Expand Down Expand Up @@ -127,7 +127,7 @@ commit SHA:
```yaml
jobs:
lint-yaml:
uses: ppat/github-workflows/.github/workflows/lint-yaml.yaml@v7.0.0 # x-release-please-version
uses: ppat/github-workflows/.github/workflows/lint-yaml.yaml@v8.0.0 # x-release-please-version
with:
git_ref: ${{ github.head_ref || github.ref }}
```
Expand All @@ -138,7 +138,7 @@ For workflows that need a GitHub App token (`release-please.yaml`, `renovate.yam
```yaml
jobs:
release:
uses: ppat/github-workflows/.github/workflows/release-please.yaml@v7.0.0 # x-release-please-version
uses: ppat/github-workflows/.github/workflows/release-please.yaml@v8.0.0 # x-release-please-version
secrets:
client_id: ${{ secrets.HOMELAB_BOT_CLIENT_ID }}
app_private_key: ${{ secrets.HOMELAB_BOT_APP_PRIVATE_KEY }}
Expand Down