Skip to content

Commit c98b485

Browse files
committed
Merge remote-tracking branch 'origin/master' into update-yarn-berry
2 parents b514899 + fed602c commit c98b485

File tree

3 files changed

+24
-6
lines changed

3 files changed

+24
-6
lines changed

.github/dependabot.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "npm" # See documentation for possible values
9+
directories:
10+
- "/"
11+
- "/test"
12+
schedule:
13+
interval: "weekly"
14+
- package-ecosystem: "github-actions" # https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot
15+
directory: "/"
16+
schedule:
17+
# Check for updates to GitHub Actions every week
18+
interval: "weekly"

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616

1717
- name: Determine Yarn Cache Path
1818
id: yarn-cache-dir-path
1919
run: echo "::set-output name=dir::$(yarn cache dir)"
2020

21-
- uses: actions/cache@v1
21+
- uses: actions/cache@v4
2222
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
2323
with:
2424
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -27,7 +27,7 @@ jobs:
2727
${{ runner.os }}-yarn-
2828
2929
- name: Use Node.js ${{ matrix.node-version }}
30-
uses: actions/setup-node@v1
30+
uses: actions/setup-node@v4
3131
with:
3232
node-version: ${{ matrix.node-version }}
3333

.github/workflows/publish.yml

100755100644
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111

1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515

1616
- name: Determine Yarn Cache Path
1717
id: yarn-cache-dir-path
1818
run: echo "::set-output name=dir::$(yarn cache dir)"
1919

20-
- uses: actions/cache@v1
20+
- uses: actions/cache@v4
2121
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
2222
with:
2323
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -26,7 +26,7 @@ jobs:
2626
${{ runner.os }}-yarn-
2727
2828
- name: Setup Node.js 18.x to publish to npmjs.org
29-
uses: actions/setup-node@v1
29+
uses: actions/setup-node@v4
3030
with:
3131
node-version: '18.x'
3232
registry-url: 'https://registry.npmjs.org'

0 commit comments

Comments
 (0)