diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8b92e40..daeea91 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,5 +1,4 @@ --- -version: 2 updates: - directory: "/" package-ecosystem: github-actions @@ -13,3 +12,4 @@ updates: package-ecosystem: bundler schedule: interval: daily +version: 2 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 32c19a4..8332c26 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,5 +1,4 @@ -name: CI -on: push +--- jobs: bundler-audit: name: Bundler Audit @@ -10,6 +9,13 @@ jobs: with: bundler-cache: true - run: bin/bundler-audit check --update + npm-audit: + name: npm Audit + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + - run: npm audit rspec: name: Test runs-on: ubuntu-latest @@ -28,10 +34,5 @@ jobs: with: bundler-cache: true - run: bin/rubocop - npm-audit: - name: npm Audit - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - - run: npm audit +name: CI +"on": push