diff options
author | Tianling Shen <cnsztl@immortalwrt.org> | 2023-04-01 04:30:18 +0800 |
---|---|---|
committer | Tianling Shen <cnsztl@immortalwrt.org> | 2023-04-01 04:31:08 +0800 |
commit | 568782ca976c5bd947f7cf4898972d97f5da9905 (patch) | |
tree | 88db89d603b4e90d120e082fdb8af0077395e02c /.github | |
parent | fb58eeb96d3e9f168017b106ce55bc8eee473caf (diff) |
CI: update remaining outdated dependencies
Ref: 63a5e3dcfc5e ("CI: update dependencies")
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/formal.yml | 2 | ||||
-rw-r--r-- | .github/workflows/jsdoc.yml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/formal.yml b/.github/workflows/formal.yml index 25609174e8..b3f824c524 100644 --- a/.github/workflows/formal.yml +++ b/.github/workflows/formal.yml @@ -11,7 +11,7 @@ jobs: fail-fast: false steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 diff --git a/.github/workflows/jsdoc.yml b/.github/workflows/jsdoc.yml index b67956ad18..254e3e6c38 100644 --- a/.github/workflows/jsdoc.yml +++ b/.github/workflows/jsdoc.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install run: npm install @@ -20,7 +20,7 @@ jobs: run: npm run doc - name: Archive docs as artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: docs path: ./docs/ |