From c808e66fbf4ac48b5c99c6b5566b1c5608344bfd Mon Sep 17 00:00:00 2001 From: Eric Schultz Date: Tue, 15 Dec 2020 12:09:46 -0600 Subject: [PATCH] Remove unneeded js steps from dependabot-ruby.yml --- .github/workflows/dependabot-ruby.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.github/workflows/dependabot-ruby.yml b/.github/workflows/dependabot-ruby.yml index 6ef49d6d..4a899813 100644 --- a/.github/workflows/dependabot-ruby.yml +++ b/.github/workflows/dependabot-ruby.yml @@ -20,20 +20,6 @@ jobs: - uses: actions/checkout@v2 with: token: ${{ secrets.NOTICE_WORKER_PAT }} - - uses: actions/setup-node@v1.4.4 - with: - node-version: ${{ matrix.node }} - - name: Get yarn cache directory path - id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn cache dir)" - - - uses: actions/cache@v2 - id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) - with: - path: ${{ steps.yarn-cache-dir-path.outputs.dir }} - key: ${{ matrix.os }}-yarn-${{ matrix.node }}-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ matrix.os }}-yarn-${{ matrix.node }}- - run: yarn install --frozen-lockfile - uses: ruby/setup-ruby@v1 with: @@ -48,7 +34,6 @@ jobs: - run: | bundle config path vendor/bundle bundle install --jobs 4 - - run: bin/setup ci - name: rebuild NOTICE-ruby run: bin/rails notice:ruby:update - name: commit and push to branch