Commit cb2898668394fd71d0241e6c73c361f801984ee6
1 parent
a89ba204
fix: workflows
Showing
2 changed files
with
7 additions
and
7 deletions
.github/workflows/deploy.yml
... | ... | @@ -59,7 +59,7 @@ jobs: |
59 | 59 | runs-on: ubuntu-latest |
60 | 60 | steps: |
61 | 61 | - name: Checkout |
62 | - uses: actions/checkout@v2 | |
62 | + uses: actions/checkout@v3 | |
63 | 63 | |
64 | 64 | - name: Sed Config Base |
65 | 65 | shell: bash |
... | ... | @@ -69,7 +69,7 @@ jobs: |
69 | 69 | cat ./.env.production |
70 | 70 | |
71 | 71 | - name: use Node.js 16 |
72 | - uses: actions/setup-node@v2.1.2 | |
72 | + uses: actions/setup-node@v3 | |
73 | 73 | with: |
74 | 74 | node-version: '16.x' |
75 | 75 | |
... | ... | @@ -78,7 +78,7 @@ jobs: |
78 | 78 | run: echo "::set-output name=dir::$(yarn cache dir)" |
79 | 79 | |
80 | 80 | - name: Cache dependencies |
81 | - uses: actions/cache@v2 | |
81 | + uses: actions/cache@v3 | |
82 | 82 | with: |
83 | 83 | path: ${{ steps.yarn-cache.outputs.dir }} |
84 | 84 | key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} |
... | ... | @@ -109,7 +109,7 @@ jobs: |
109 | 109 | cp dist/index.html dist/404.html |
110 | 110 | |
111 | 111 | - name: Deploy |
112 | - uses: peaceiris/actions-gh-pages@v2.5.0 | |
112 | + uses: peaceiris/actions-gh-pages@v3 | |
113 | 113 | env: |
114 | 114 | ACTIONS_DEPLOY_KEY: ${{secrets.ACTIONS_DEPLOY_KEY}} |
115 | 115 | PUBLISH_BRANCH: gh-pages | ... | ... |
.github/workflows/ftp-schedule.yml
... | ... | @@ -11,7 +11,7 @@ jobs: |
11 | 11 | runs-on: ubuntu-latest |
12 | 12 | steps: |
13 | 13 | - name: Checkout |
14 | - uses: actions/checkout@v2 | |
14 | + uses: actions/checkout@v3 | |
15 | 15 | |
16 | 16 | - name: Sed Config Base |
17 | 17 | shell: bash |
... | ... | @@ -22,7 +22,7 @@ jobs: |
22 | 22 | cat ./.env.production |
23 | 23 | |
24 | 24 | - name: use Node.js 16 |
25 | - uses: actions/setup-node@v2.1.2 | |
25 | + uses: actions/setup-node@v3 | |
26 | 26 | with: |
27 | 27 | node-version: '16.x' |
28 | 28 | |
... | ... | @@ -31,7 +31,7 @@ jobs: |
31 | 31 | run: echo "::set-output name=dir::$(yarn cache dir)" |
32 | 32 | |
33 | 33 | - name: Cache dependencies |
34 | - uses: actions/cache@v2 | |
34 | + uses: actions/cache@v3 | |
35 | 35 | with: |
36 | 36 | path: ${{ steps.yarn-cache.outputs.dir }} |
37 | 37 | key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | ... | ... |