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
2 changes: 2 additions & 0 deletions .github/workflows/semantic-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
main:
name: Validate PR title
runs-on: ubuntu-latest
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
environment: dev
steps:
- uses: amannn/action-semantic-pull-request@v5
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/semantic-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ permissions:
jobs:
semantic-release:
runs-on: ubuntu-latest
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
environment: dev
steps:
- name: Generate GitHub App token
Expand All @@ -32,7 +34,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
node-version: "24"

- name: Install Dependencies
run: npm clean-install
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ on:
jobs:
test-template:
runs-on: ubuntu-latest
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
environment: dev
steps:
- name: Checkout
Expand All @@ -26,7 +28,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
node-version: '24'
cache: 'npm'
cache-dependency-path: 'template/frontend/package*.json'

Expand Down
5 changes: 3 additions & 2 deletions template/.github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on: [ push, pull_request ]
env:
AWS_REGION: ${{ '{{ vars.AWS_REGION }}' }}
AWS_ACCOUNT_ID: ${{ '{{ vars.AWS_ACCOUNT_ID }}' }}
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true

jobs:
check-lint-and-formatting:
Expand All @@ -19,9 +20,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '20'
node-version: '24'
- name: Frontend Lint & Typecheck & Test
run: make check-lint-and-test-frontend
{% endif %}
Expand Down
4 changes: 3 additions & 1 deletion template/.github/workflows/semantic-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ permissions:
jobs:
semantic-release:
runs-on: ubuntu-latest
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
environment: dev
steps:
- name: Checkout
Expand All @@ -24,7 +26,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
node-version: "24"

- name: Install Dependencies
run: npm install semantic-release @semantic-release/changelog @semantic-release/git @semantic-release/github @semantic-release/commit-analyzer conventional-changelog-conventionalcommits
Expand Down
Loading