Skip to content

Commit 6b25609

Browse files
committed
v0.1.3 + opt into Node.js 24 for JS-based actions
- bump pyproject to 0.1.3 — exercise the inline bump-homebrew workflow end-to-end on the next tag - FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true at workflow env level (both release.yml and ci.yml) — silences the deprecation warnings and preempts the 2026-06-02 default flip
1 parent 04cc8a7 commit 6b25609

3 files changed

Lines changed: 10 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ on:
55
pull_request:
66
branches: [main]
77

8+
# Opt into Node.js 24 for JS-based actions; default flips on 2026-06-02.
9+
env:
10+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
11+
812
jobs:
913
test:
1014
name: Test (${{ matrix.os }}, Python ${{ matrix.python-version }})

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ on:
55
tags:
66
- "v*"
77

8+
# Opt into Node.js 24 for JS-based actions; default will flip on 2026-06-02.
9+
# See https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
10+
env:
11+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
12+
813
jobs:
914
build:
1015
name: Build distributions

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "codestrain"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = "Your AI coding recovery score, from the terminal."
55
requires-python = ">=3.9"
66
readme = "README.md"

0 commit comments

Comments
 (0)