Skip to content

Commit c25152a

Browse files
ci: update GitHub template files
1 parent 88f3ef5 commit c25152a

2 files changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/deployment.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
REGISTRY: docker.io
1414
IMAGE_OWNER: trueberryless
1515
IMAGE_NAME: truzzles
16-
NODE_VERSION: 20
16+
NODE_VERSION: 24.10.0
1717

1818
jobs:
1919
changesets:
@@ -86,12 +86,12 @@ jobs:
8686
needs: [changesets, image-tag]
8787
if: >
8888
(
89-
needs.changesets.outputs.hasChangesets == 'false' &&
89+
needs.changesets.outputs.hasChangesets == 'false' &&
9090
(
91-
contains(github.event.head_commit.message, 'deploy') ||
91+
contains(github.event.head_commit.message, 'deploy') ||
9292
contains(github.event.head_commit.message, 'release')
9393
)
94-
) ||
94+
) ||
9595
github.event_name == 'workflow_dispatch'
9696
runs-on: ubuntu-latest
9797
permissions:

.github/workflows/format.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
permissions:
77
contents: read
88

9+
env:
10+
NODE_VERSION: 24.10.0
11+
912
jobs:
1013
autofix:
1114
runs-on: ubuntu-latest
@@ -18,7 +21,7 @@ jobs:
1821
- name: Setup Node
1922
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
2023
with:
21-
node-version: 20.19.5
24+
node-version: ${{ env.NODE_VERSION }}
2225
cache: "pnpm"
2326

2427
- name: Install Dependencies

0 commit comments

Comments
 (0)