Skip to content

Commit 01fdb82

Browse files
committed
add dependabot
1 parent 7ffd437 commit 01fdb82

2 files changed

Lines changed: 20 additions & 3 deletions

File tree

.github/dependabot.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
version: 2
3+
updates:
4+
- package-ecosystem: "npm"
5+
directory: "/"
6+
cooldown:
7+
default-days: 14
8+
schedule:
9+
interval: "daily"
10+
labels:
11+
- "maintenance"
12+
- package-ecosystem: "github-actions"
13+
directory: "/"
14+
schedule:
15+
interval: "weekly"
16+
labels:
17+
- "maintenance"

.github/workflows/build_and_deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ jobs:
1212
- uses: "actions/checkout@v5"
1313
- uses: "actions/setup-node@v5"
1414
with:
15+
node-version: "24"
1516
cache: "npm"
1617

17-
- run: "npm install"
18+
- run: "npm clean-install"
1819
- run: "npm run build"
1920
- uses: "actions/upload-artifact@v4"
2021
with:
@@ -37,12 +38,11 @@ jobs:
3738
name: "dist"
3839
path: "dist"
3940
- name: "obfuscate password for rclone"
40-
run: "echo \"RCLONE_FTP_PASS=$(echo ${{ secrets.HETZNER_FTP_PASS}} | rclone obscure -)\" >> $GITHUB_ENV"
41+
run: 'echo "RCLONE_FTP_PASS=$(echo ${{ secrets.HETZNER_FTP_PASS}} | rclone obscure -)" >> $GITHUB_ENV'
4142
- name: "sync webspace"
4243
run: "rclone sync dist :ftp:"
4344
env:
4445
RCLONE_FTP_HOST: "${{ vars.HETZNER_FTP_HOST }}"
4546
RCLONE_FTP_USER: "${{ secrets.HETZNER_FTP_USER }}"
4647
RCLONE_FTP_EXPLICIT_TLS: "true"
4748
RCLONE_VERBOSE: 1
48-

0 commit comments

Comments
 (0)