Skip to content

Commit 42bd612

Browse files
authored
Merge pull request #84 from dargstack/chore/deps/pnpm
chore(deps): update
2 parents 84e7410 + 48a5519 commit 42bd612

File tree

5 files changed

+434
-465
lines changed

5 files changed

+434
-465
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
release_semantic_dry:
2626
needs: prepare_jobs
2727
name: Release (semantic, dry)
28-
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.0.0-beta.11
28+
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.3.16
2929
if: needs.prepare_jobs.outputs.pr_found == 'false' || github.event_name == 'pull_request'
3030
permissions:
3131
contents: write
@@ -35,7 +35,7 @@ jobs:
3535
DRY_RUN: true
3636
build:
3737
name: Build
38-
uses: dargmuesli/github-actions/.github/workflows/docker.yml@2.0.0-beta.11
38+
uses: dargmuesli/github-actions/.github/workflows/docker.yml@2.3.16
3939
needs: release_semantic_dry
4040
permissions:
4141
packages: write
@@ -48,15 +48,15 @@ jobs:
4848
release_semantic:
4949
needs: build
5050
name: Release (semantic)
51-
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.0.0-beta.11
51+
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@2.3.16
5252
permissions:
5353
contents: write
5454
secrets:
5555
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
5656
deploy:
5757
needs: build
5858
name: Deploy
59-
uses: dargmuesli/github-actions/.github/workflows/deploy-cloudflare-pages.yml@2.0.0-beta.11
59+
uses: dargmuesli/github-actions/.github/workflows/deploy-cloudflare-pages.yml@2.3.16
6060
permissions:
6161
contents: read
6262
deployments: write

.github/workflows/release-schedule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
release-schedule:
1010
name: "Release: Scheduled"
11-
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@2.0.0-beta.11
11+
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@2.3.16
1212
secrets:
1313
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
1414
with:

Dockerfile

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ FROM node:22.13.1-alpine@sha256:e2b39f7b64281324929257d0f8004fb6cb4bf0fdfb9aa8ce
55

66
COPY ./docker/entrypoint.sh /usr/local/bin/docker-entrypoint.sh
77

8-
RUN corepack enable
8+
RUN npm install -g corepack@latest \
9+
# TODO: remove (https://github.com/nodejs/corepack/issues/612)
10+
&& corepack enable
911

1012
WORKDIR /srv/app/
1113

@@ -29,10 +31,12 @@ ENV CI=true
2931

3032
WORKDIR /srv/app/
3133

32-
COPY ./pnpm-lock.yaml ./
34+
COPY ./pnpm-lock.yaml package.json ./
3335

34-
RUN corepack enable && \
35-
pnpm fetch
36+
RUN npm install -g corepack@latest \
37+
# TODO: remove (https://github.com/nodejs/corepack/issues/612)
38+
&& corepack enable \
39+
&& pnpm fetch
3640

3741
COPY ./ ./
3842

@@ -52,8 +56,10 @@ WORKDIR /srv/app/
5256
COPY --from=prepare /srv/app/ ./
5357

5458
ENV NODE_ENV=production
55-
RUN corepack enable && \
56-
pnpm --dir src run generate
59+
RUN npm install -g corepack@latest \
60+
# TODO: remove (https://github.com/nodejs/corepack/issues/612)
61+
&& corepack enable \
62+
&& pnpm --dir src run generate
5763

5864

5965
########################
@@ -65,8 +71,10 @@ WORKDIR /srv/app/
6571

6672
COPY --from=prepare /srv/app/ ./
6773

68-
RUN corepack enable && \
69-
pnpm --dir src run lint
74+
RUN npm install -g corepack@latest \
75+
# TODO: remove (https://github.com/nodejs/corepack/issues/612)
76+
&& corepack enable \
77+
&& pnpm --dir src run lint
7078

7179

7280
#######################

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"engines": {
44
"node": "22"
55
},
6-
"packageManager": "pnpm@9.15.4",
6+
"packageManager": "pnpm@10.2.0",
77
"scripts": {
88
"prepare": "husky"
99
},

0 commit comments

Comments
 (0)