Skip to content

Commit dccf8bb

Browse files
authoredMar 15, 2025··
Merge pull request #4 from z720/dependabot/npm_and_yarn/npm_and_yarn-be4b90d81e
Bump vite from 5.4.11 to 5.4.14 in the npm_and_yarn group across 1 directory
2 parents 2260880 + 6dbd321 commit dccf8bb

File tree

3 files changed

+18
-15
lines changed

3 files changed

+18
-15
lines changed
 

‎.github/workflows/main.yml

+10-7
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,26 @@ on:
1616
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1717
jobs:
1818
# This workflow contains a single job called "build"
19-
deploy:
20-
# The type of runner that the job will run on
19+
build:
2120
runs-on: ubuntu-latest
22-
23-
# Steps represent a sequence of tasks that will be executed as part of the job
2421
steps:
2522
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2623
- uses: actions/checkout@v2
27-
2824
# Deploy
2925
- name: Init
3026
run: npm install
31-
27+
28+
deploy:
29+
# The type of runner that the job will run on
30+
runs-on: ubuntu-latest
31+
32+
# Steps represent a sequence of tasks that will be executed as part of the job
33+
steps:
3234
- name: Deploy with gh-pages
35+
if: github.ref == 'refs/heads/main'
3336
run: |
3437
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
3538
npm run deploy -- -u "github-actions-bot <support+actions@github.com>"
3639
env:
37-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
40+
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
3841

‎package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"npm-run-all": "^4.1.5",
77
"@sveltejs/vite-plugin-svelte": "^4.0.0",
88
"svelte": "^5.1.3",
9-
"vite": "^5.4.10",
9+
"vite": "^5.4.14",
1010
"svelte-qrcode": "1.0.1"
1111
},
1212
"dependencies": {

0 commit comments

Comments
 (0)
Please sign in to comment.