Skip to content

Commit 5bb3fef

Browse files
committed
Merge branch 'main' of github.com:discoverygarden/create-pr into fix/update-node20
2 parents eb800f5 + 7401fe9 commit 5bb3fef

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/check_dist.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@ jobs:
99
check-dist:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
13-
- uses: actions/setup-node@v3
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-node@v4
1414
with:
15-
node-version: 16
15+
node-version: 20
1616
- run: npm ci
1717
- run: npm run package
1818
- run: |
1919
if [[ $(git status --porcelain) ]]; then
20+
echo "::debug:: $(git status --porcelain)"
2021
echo '::error ::`dist` changed, please update dist by running `npm run package`'
2122
exit 1
2223
fi

.github/workflows/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: pull_request
55
jobs:
66
dependabot:
77
runs-on: ubuntu-latest
8-
if: ${{ github.actor == 'dependabot[bot]' }}
8+
if: ${{ github.actor == 'dependabot[bot]' || github.actor == 'renovate[bot]' }}
99
steps:
1010
- name: Create Issue
1111
uses: discoverygarden/create-issue@v1

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
test:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
12-
- uses: actions/setup-node@v3
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-node@v4
1313
with:
14-
node-version: 16
14+
node-version: 20
1515
- run: npm ci
1616
- run: npm test

0 commit comments

Comments
 (0)