diff options
author | 2021-09-13 15:34:40 -0700 | |
---|---|---|
committer | 2021-09-13 15:34:40 -0700 | |
commit | d7b6e5481062f3f4901483a14e26cf103a459596 (patch) | |
tree | 109b5b011cee10024a1823442557ede66a328681 | |
parent | 0f28033a9d78d2317acacc954d445371c6c290d6 (diff) | |
download | astro-d7b6e5481062f3f4901483a14e26cf103a459596.tar.gz astro-d7b6e5481062f3f4901483a14e26cf103a459596.tar.zst astro-d7b6e5481062f3f4901483a14e26cf103a459596.zip |
fix outdated lockfile issue (#1357)
-rw-r--r-- | .github/workflows/stat.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.github/workflows/stat.yml b/.github/workflows/stat.yml index 43b89be96..ab9e042f3 100644 --- a/.github/workflows/stat.yml +++ b/.github/workflows/stat.yml @@ -18,9 +18,7 @@ jobs: - uses: actions/setup-node@v1 with: version: 14 - - run: npm install @octokit/action - # Node.js script can be anywhere. A good convention is to put local GitHub Actions - # into the `.github/actions` folder + - run: yarn install --frozen-lockfile --ignore-engines --ignore-scripts - run: node scripts/stats/index.js env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |