Skip to content

Commit d9540bb

Browse files
authored
fix failing jobs due to outdated actions (#535)
1 parent c26d936 commit d9540bb

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/publish-release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Setup Node.js Environment
13-
uses: actions/setup-node@v2.1.2
13+
uses: actions/setup-node@v3
1414
with:
15-
node-version: ^14.17.5
15+
node-version: 16.x
1616

17-
- name: Install npm@7
18-
run: npm install -g npm@8.3.1
17+
- name: Install npm
18+
run: npm install -g npm@8.19.4
1919

2020
- name: Run node-gyp bug workaround script
2121
run: |

.github/workflows/rebuild-changelog.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ jobs:
1212
name: Rebuild changelog
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v1
15+
- uses: actions/checkout@v3
16+
with:
17+
fetch-depth: 0
1618
- name: Set up Git
1719
run: |
1820
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"

0 commit comments

Comments
 (0)