Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/ai-service-release-stable-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- name: Generate a token
id: generate-token
uses: actions/create-github-app-token@v1
uses: actions/create-github-app-token@v2
with:
app-id: ${{ vars.CI_APP_ID }}
private-key: ${{ secrets.CI_APP_PRIVATE_KEY }}
Expand All @@ -38,7 +38,7 @@ jobs:
with:
python-version: 3.12.0
- name: Install Poetry
uses: abatilo/actions-poetry@v2
uses: abatilo/actions-poetry@v3
with:
poetry-version: 1.8.3
- name: Generate and Save Change Log
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ai-service-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Install the project dependencies
run: poetry install --without eval
- name: Install Just
uses: extractions/setup-just@v2
uses: extractions/setup-just@v3
with:
just-version: "1.36.0"
- name: Initialize the config
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-rc-release-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
git diff

- name: Create PR
uses: peter-evans/create-pull-request@v7
uses: peter-evans/create-pull-request@v8
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🌐 Web query:

peter-evans/create-pull-request v8 breaking changes release notes

💡 Result:

peter-evans/create-pull-request v8 — breaking / required changes (release notes)

  • Self-hosted runners must be updated: if you run this action on a self-hosted GitHub Actions runner, you need Actions Runner v2.327.1+ to ensure Node 24 support (which v8 uses). Otherwise the action may fail to run. [1][3]
  • actions/checkout updated to v6 inside the project (and docs updated accordingly). If your workflows (or enterprise policies) pin/allow only older actions/checkout major versions, review compatibility. [1]

No other explicit input/output “behaviour changes” are called out in the v8.0.0 release notes beyond the runner/Node 24 requirement and the checkout major bump. [1][2]

Sources: [1] [2] [3]


All inputs (base, branch, commit-message, title, body, draft) are compatible with v8—no breaking changes for input parameters.

However, if this repository uses self-hosted GitHub Actions runners, verify they are running Actions Runner v2.327.1 or later to support Node 24 (required by v8). GitHub-hosted runners are unaffected.

🤖 Prompt for AI Agents
In @.github/workflows/create-rc-release-pr.yaml at line 68, The workflow uses
the action "uses: peter-evans/create-pull-request@v8" which requires Node 24 on
the runner; if you use self-hosted runners, verify and document that they are
running Actions Runner v2.327.1 or later (or upgrade them) so the v8 action runs
properly—update repository CONTRIBUTING/CI docs or add a README note referencing
the workflow action string to inform maintainers to check/upgrade self-hosted
runner versions.

with:
base: main
branch: "release/${{ github.event.inputs.release_version }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-tagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47

- name: Tag PR based on changed files and title
uses: actions/github-script@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request-title-validator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: validate pull request title
uses: kontrolplane/pull-request-title-validator@v1.3.1
uses: kontrolplane/pull-request-title-validator@v1.5.0
with:
types: "fix,feat,chore"
scopes: "wren-ai-service"
2 changes: 1 addition & 1 deletion .github/workflows/ui-release-image-stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
steps:
- name: Generate a token
id: generate-token
uses: actions/create-github-app-token@v1
uses: actions/create-github-app-token@v2
with:
app-id: ${{ vars.CI_APP_ID }}
private-key: ${{ secrets.CI_APP_PRIVATE_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wren-launcher-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
go-version: '1.24'
cache-dependency-path: wren-launcher/go.sum
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
uses: golangci/golangci-lint-action@v9
with:
version: v2.3.1
working-directory: wren-launcher
Expand Down