Skip to content

Commit 4dd3994

Browse files
Bump actions/checkout from 4 to 5 (#390)
* Bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * disable extraneous require for 'sass' since the dependency is built as part of "npm run init" and therefore not gonna be in package.json --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Carlos (Goodwine) <2022649+Goodwine@users.noreply.github.com>
1 parent e490354 commit 4dd3994

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.eslintrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
"error",
66
{"allowExpressions": true}
77
],
8+
"n/no-extraneous-require": ["error", {
9+
"allowModules": ["sass"]
10+
}],
811
"func-style": ["error", "declaration"],
912
"prefer-const": ["error", {"destructuring": "all"}],
1013
// It would be nice to sort import declaration order as well, but that's not

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- uses: actions/setup-node@v4
2323
with:
2424
node-version: 'lts/*'
@@ -46,7 +46,7 @@ jobs:
4646
fail-fast: false
4747

4848
steps:
49-
- uses: actions/checkout@v4
49+
- uses: actions/checkout@v5
5050
- uses: actions/setup-node@v4
5151
with:
5252
node-version: ${{ matrix.node-version }}
@@ -89,7 +89,7 @@ jobs:
8989
node_version: lts/-2
9090

9191
steps:
92-
- uses: actions/checkout@v4
92+
- uses: actions/checkout@v5
9393
- uses: dart-lang/setup-dart@v1
9494
with: {sdk: stable}
9595
- uses: actions/setup-node@v4
@@ -130,7 +130,7 @@ jobs:
130130
needs: [static_analysis, tests, sass_spec]
131131

132132
steps:
133-
- uses: actions/checkout@v4
133+
- uses: actions/checkout@v5
134134
- uses: actions/setup-node@v4
135135
with:
136136
node-version: 'lts/*'

0 commit comments

Comments
 (0)