mirror of
https://github.com/dreamhunter2333/cloudflare_temp_email.git
synced 2026-05-11 18:10:01 +08:00
chore: upgrade dependencies and GitHub Actions for Node.js 24 compatibility Upgrade GitHub Actions to fix Node.js 20 deprecation warnings: - actions/checkout v4 → v6 - actions/setup-node v4 → v6 - pnpm/action-setup v3 → v4 - docker/login-action v3 → v4 - docker/setup-qemu-action v3 → v4 - docker/setup-buildx-action v3 → v4 - docker/build-push-action v5 → v7 - node-version 20 → 22, pnpm 8 → 10 Upgrade project dependencies: - frontend: vue 3.5.30, naive-ui 2.44.1, dompurify 3.3.3, @unhead/vue 2.1.12 - worker: hono 4.12.7, @cloudflare/workers-types, typescript-eslint 8.57.0 - all: wrangler 4.72.0 Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
26 lines
676 B
YAML
26 lines
676 B
YAML
name: Upstream Sync
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * 1"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
sync_latest_from_upstream:
|
|
name: Sync latest commits from upstream repo
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event.repository.fork }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Sync upstream changes
|
|
id: sync
|
|
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4
|
|
with:
|
|
upstream_sync_repo: dreamhunter2333/cloudflare_temp_email
|
|
upstream_sync_branch: main
|
|
target_sync_branch: main
|
|
target_repo_token: ${{ secrets.GITHUB_TOKEN }} # automatically generated, no need to set
|
|
test_mode: false
|