From e8207ff9e1ce319c079856730c36caa437dd9cef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=80=97=E5=AD=90?= Date: Mon, 25 Mar 2024 02:05:00 +0800 Subject: [PATCH] =?UTF-8?q?workflow:=20=E4=BD=BF=E7=94=A8=E6=97=A7?= =?UTF-8?q?=E7=89=88=E6=9C=AC=E7=9A=84=20action?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7caa842..93675c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,12 +9,12 @@ jobs: image: node:10.24.1 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 - name: Install dependencies run: npm install - - uses: actions/cache@v4 + - uses: actions/cache@v2 with: path: node_modules key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -26,7 +26,7 @@ jobs: image: node:10.24.1 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 - name: Build run: npm run build @@ -38,7 +38,7 @@ jobs: image: alpine:latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 - name: Prepare environment run: | @@ -50,7 +50,7 @@ jobs: zip -r icon-font.zip * - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v2 with: name: icon-font.zip path: icon-font/icon-font.zip