diff --git a/.github/workflows/update-deps.yml b/.github/workflows/update-deps.yml index 3a665077d..e62d5a500 100644 --- a/.github/workflows/update-deps.yml +++ b/.github/workflows/update-deps.yml @@ -14,17 +14,18 @@ jobs: name: Update all dependencies runs-on: ubuntu-latest - - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - cache: "npm" - - run: npm ci + steps: + - uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + cache: "npm" + - run: npm ci - - run: npx ncu -u # Update dependencies - - name: Create Pull Request - uses: peter-evans/create-pull-request@v4 - with: - commit-message: "chore: update dependencies to the latest version" - title: Update dependencies to the latest version + - run: npx ncu -u # Update dependencies + - name: Create Pull Request + uses: peter-evans/create-pull-request@v4 + with: + commit-message: "chore: update dependencies to the latest version" + title: Update dependencies to the latest version