Skip to content

Commit 70be6b8

Browse files
committed
👷 Update Github Actions
1 parent f4dbb87 commit 70be6b8

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/actions/node-and-npm-cache/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ runs:
44
using: 'composite'
55
steps:
66
- name: Setup node
7-
uses: actions/setup-node@v4
7+
uses: actions/setup-node@v6
88
with:
99
node-version: 'lts/*'
1010

1111
- name: Cache dependencies
12-
uses: actions/cache@v4
12+
uses: actions/cache@v5
1313
with:
1414
path: ~/.npm
1515
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/lighthouse/lighthouserc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"ci": {
33
"collect": {
44
"url": [
5-
"http://localhost:4173/NotesReview/"
5+
"https://localhost:4173/NotesReview/"
66
],
77
"startServerCommand": "npm run serve",
88
"startServerReadyPattern": "running|listen|ready|local",
99
"numberOfRuns": 3,
1010
"settings": {
11-
"chromeFlags": "--no-sandbox",
11+
"chromeFlags": "--no-sandbox --ignore-certificate-errors",
1212
"preset": "desktop"
1313
}
1414
},

.github/workflows/gh-pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v6
2222
- name: Build
2323
uses: ./.github/actions/build
2424
with:
@@ -28,7 +28,7 @@ jobs:
2828
openstreetmap-oauth-client-secret: ${{ secrets.OPENSTREETMAP_OAUTH_CLIENT_SECRET }}
2929
mapillary-client-id: ${{ secrets.MAPILLARY_CLIENT_ID }}
3030
- name: Upload artifact
31-
uses: actions/upload-pages-artifact@v3
31+
uses: actions/upload-pages-artifact@v4
3232
with:
3333
path: './app/dist'
3434
- name: Deploy to GitHub Pages

.github/workflows/lighthouse.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616
- name: Build
1717
uses: ./.github/actions/build
1818
with:
1919
notesreview-api-url: ${{ secrets.NOTESREVIEW_API_URL }}
2020
- name: Lighthouse CI
2121
run: |
22-
npm install -g @lhci/cli@0.13.x
22+
npm install -g @lhci/cli@0.15.x
2323
lhci autorun --config=".github/lighthouse/lighthouserc.json"
2424
env:
2525
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
1414
- name: Install Node.js and setup npm cache
1515
uses: ./.github/actions/node-and-npm-cache
1616
- name: Lint

0 commit comments

Comments
 (0)