Skip to content

Commit cc5afee

Browse files
authored
Merge pull request #399 from icelam/dependabot-github-action
chore: setup dependabot for upgrading github actions
2 parents f05d329 + 19fdaa0 commit cc5afee

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,13 @@ updates:
1818
reviewers:
1919
- "icelam"
2020
open-pull-requests-limit: 10
21+
- package-ecosystem: "github-actions"
22+
directory: "/"
23+
target-branch: "develop"
24+
schedule:
25+
interval: "monthly"
26+
commit-message:
27+
prefix: "ci"
28+
rebase-strategy: "auto"
29+
reviewers:
30+
- "icelam"

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ jobs:
2121
HUSKY: 0
2222
steps:
2323
- name: Checkout repo
24-
uses: actions/checkout@main
24+
uses: actions/checkout@v3
2525
- name: Setup Node.js version ${{ matrix.node-version }}
26-
uses: actions/setup-node@main
26+
uses: actions/setup-node@v3
2727
with:
2828
node-version: ${{ matrix.node-version }}
2929
- name: Get yarn cache directory path
3030
id: yarn-cache-dir-path
31-
run: echo "::set-output name=dir::$(yarn cache dir)"
31+
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
3232
- name: Restore yarn cache
33-
uses: actions/cache@v1
33+
uses: actions/cache@v3
3434
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
3535
with:
3636
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111

1212
steps:
1313
- name: Checkout repo
14-
uses: actions/checkout@main
14+
uses: actions/checkout@v3
1515
- name: Setup Node.js version
16-
uses: actions/setup-node@main
16+
uses: actions/setup-node@v3
1717
with:
1818
node-version-file: '.nvmrc'
1919

0 commit comments

Comments
 (0)