Skip to content

Commit

Permalink
chore(deps): update actions/checkout action to v4 (#153)
Browse files Browse the repository at this point in the history
* chore(deps): update actions/checkout action to v4

* format

* format

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Yosuke Ota <otameshiyo23@gmail.com>
  • Loading branch information
renovate[bot] and ota-meshi authored Sep 4, 2023
1 parent a881bc6 commit f7f8afe
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/GHPages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 14
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/NodeCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- name: Install Packages
run: npm install
Expand All @@ -22,7 +22,7 @@ jobs:
matrix:
node-version: [12.x, 14.x, 16.x, 17.x]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand All @@ -34,7 +34,7 @@ jobs:
test-with-eslint6:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 14.x
Expand All @@ -51,7 +51,7 @@ jobs:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
Expand Down
7 changes: 3 additions & 4 deletions tests/src/utils/rules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,9 @@ function getDirRules() {
const ruleId = `toml/${ruleName}`;

// eslint-disable-next-line @typescript-eslint/no-var-requires, @typescript-eslint/no-require-imports -- for test
const rule = require(path.join(
vueCustomBlockRulesLibRoot,
filename,
)).default;
const rule = require(
path.join(vueCustomBlockRulesLibRoot, filename),
).default;
rules[ruleId] = rule;
}
return rules;
Expand Down

0 comments on commit f7f8afe

Please sign in to comment.