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
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
outputs:
version: ${{ steps.meta.outputs.version }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ env.RELEASE_TAG }}
fetch-depth: 0
- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
node-version: 24
- id: meta
Expand All @@ -40,7 +40,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ env.RELEASE_TAG }}
- env:
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ env.RELEASE_TAG }}
- uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -135,10 +135,10 @@ jobs:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ env.RELEASE_TAG }}
- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
node-version: 24
registry-url: "https://registry.npmjs.org"
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/codexchat-core", "crates/codexchat-cli"]
resolver = "2"

[workspace.package]
version = "0.1.8"
version = "0.1.9"
edition = "2024"
license = "MIT"
authors = ["Dhruv Mars"]
Expand Down
6 changes: 6 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @dhruv2mars/codexchat

## 0.1.9

### Patch Changes

- Upgrade GitHub release workflow actions to the Node 24 majors and remove the deprecation warning.

## 0.1.8

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhruv2mars/codexchat",
"version": "0.1.8",
"version": "0.1.9",
"description": "ChatGPT terminal app with official Codex bridge",
"type": "module",
"bin": {
Expand Down
4 changes: 4 additions & 0 deletions packages/cli/test/release-contract.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ test("release workflow keeps tag and npm publish contract", () => {
assert.match(text, /tags:\s*\n\s*-\s*["']v\*["']/);
assert.match(text, /gh release create "\$\{RELEASE_TAG\}" --title "\$\{RELEASE_TAG\}" --generate-notes/);
assert.match(text, /npm publish --provenance --access public/);
assert.match(text, /actions\/checkout@v5/);
assert.match(text, /actions\/setup-node@v5/);
assert.doesNotMatch(text, /actions\/checkout@v4/);
assert.doesNotMatch(text, /actions\/setup-node@v4/);
assert.doesNotMatch(text, /NPM_TOKEN:\s*\$\{\{\s*secrets\.NPM_TOKEN\s*\}\}/);
assert.doesNotMatch(text, /trusted publisher not configured and NPM_TOKEN missing/);
assert.match(text, /FORCE_JAVASCRIPT_ACTIONS_TO_NODE24:\s*true/);
Expand Down
Loading