Skip to content

Commit

Permalink
Update GitHub action versions
Browse files Browse the repository at this point in the history
Signed-off-by: Brian Evans <ebrian101@gmail.com>
  • Loading branch information
mrbrianevans committed Oct 5, 2024
1 parent 85d406d commit 119e154
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.2.2
- uses: pnpm/action-setup@v4.0.0
with:
version: 9.1.1
version: 9.12.0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18"
node-version: "22"
cache: pnpm
cache-dependency-path: 'pnpm-lock.yaml'
- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lighthouse.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.2.2
- uses: pnpm/action-setup@v4.0.0
with:
version: 9.1.1
version: 9.12.0
- uses: actions/setup-node@v3
with:
node-version: "18"
node-version: "22"
cache: pnpm
cache-dependency-path: 'pnpm-lock.yaml'
- name: Install dependencies
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on: # rebuild any PRs and any branch changes
jobs:
server-component:
runs-on: ubuntu-latest
container: node:19
container: node:22
services:
loki:
# todo: ideally, there would be some way of outputting all logs to the github action summary
Expand All @@ -35,13 +35,13 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.2.2
- uses: pnpm/action-setup@v4.0.0
with:
version: 9.1.1
version: 9.12.0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "19"
node-version: "22"
cache: pnpm
cache-dependency-path: 'pnpm-lock.yaml'
- name: Install dependencies
Expand Down
5 changes: 3 additions & 2 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,6 @@
"sveltefileuploadcomponent": "^0.1.0",
"title-case": "^3.0.3",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.18.12/xlsx-0.18.12.tgz"
}
}
},
"packageManager": "pnpm@9.12.0+sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca"
}
3 changes: 1 addition & 2 deletions fs-shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"watch": "tsc --build --watch",
"start": "node index.js"
"watch": "tsc --build --watch"
},
"devDependencies": {
"@types/node": "^22.7.4",
Expand Down

0 comments on commit 119e154

Please sign in to comment.