Skip to content

Commit

Permalink
fix failing jobs due to outdated actions (#535)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcasimir authored Jun 14, 2023
1 parent c26d936 commit d9540bb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup Node.js Environment
uses: actions/setup-node@v2.1.2
uses: actions/setup-node@v3
with:
node-version: ^14.17.5
node-version: 16.x

- name: Install npm@7
run: npm install -g npm@8.3.1
- name: Install npm
run: npm install -g npm@8.19.4

- name: Run node-gyp bug workaround script
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/rebuild-changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ jobs:
name: Rebuild changelog
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Git
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
Expand Down

0 comments on commit d9540bb

Please sign in to comment.