Skip to content

Commit

Permalink
ci: update github actions dependencies to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 14, 2023
1 parent e09c037 commit b7becb3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
Expand All @@ -35,7 +35,7 @@ jobs:
- name: Build
run: yarn run build
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/**/*
Expand All @@ -45,11 +45,11 @@ jobs:
needs: ci
if: ${{ github.event_name == 'push' }}
steps:
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
Expand Down

0 comments on commit b7becb3

Please sign in to comment.