Skip to content

Commit

Permalink
Merge pull request #69 from jamenamcinteer/update-dependencies-workflow
Browse files Browse the repository at this point in the history
Fix: Install @octokit/rest for scripts
  • Loading branch information
jamenamcinteer authored Oct 18, 2024
2 parents 9a7455e + daabaf5 commit bf9ad7f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .github/scripts/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "github-actions-scripts",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^19.0.7"
}
}
7 changes: 6 additions & 1 deletion .github/workflows/dependency-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ jobs:
with:
node-version: '18'

- name: Install dependencies
- name: Install scripts dependencies
run: |
cd .github/scripts
npm install
- name: Install project dependencies
run: yarn install

- name: Check for outdated dependencies
Expand Down

0 comments on commit bf9ad7f

Please sign in to comment.