Skip to content

Commit d08a61a

Browse files
authored
Merge branch 'main' into immutable-actions
2 parents e7de2ef + 9f26e97 commit d08a61a

File tree

4 files changed

+21
-6
lines changed

4 files changed

+21
-6
lines changed

.github/dependabot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: 'npm'
4+
directory: '/'
5+
schedule:
6+
interval: 'weekly'
7+
cooldown:
8+
default-days: 5
9+
semver-major-days: 21
10+
semver-minor-days: 14
11+
semver-patch-days: 7
12+
- package-ecosystem: 'github-actions'
13+
directory: '/'
14+
schedule:
15+
interval: 'weekly'

.github/workflows/eslint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ jobs:
3030
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
3131
steps:
3232
- name: Checkout code
33-
uses: actions/checkout@4.2.2
33+
uses: actions/checkout@v5.0.0
3434

3535
- name: Install ESLint
3636
run: |
37-
npm install eslint@9.23.0
37+
npm install eslint@9.34.0
3838
npm install @microsoft/eslint-formatter-sarif@3.1.0
3939
npm install eslint-plugin-github@6.0.0
4040
@@ -48,7 +48,7 @@ jobs:
4848
continue-on-error: true
4949

5050
- name: Upload analysis results to GitHub
51-
uses: github/codeql-action/upload-sarif@3.28.15
51+
uses: github/codeql-action/upload-sarif@v3.30.0
5252
with:
5353
sarif_file: eslint-results.sarif
5454
wait-for-processing: true

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
persist-credentials: false
3535

3636
- name: "Run analysis"
37-
uses: ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1
37+
uses: ossf/scorecard-action@05b42c624433fc40578a4040d5cf5e36ddca8cde # v2.4.2
3838
with:
3939
results_file: results.sarif
4040
results_format: sarif

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@4.2.2
18+
uses: actions/checkout@v5.0.0
1919
- name: Setup Node
20-
uses: actions/setup-node@4.3.0
20+
uses: actions/setup-node@v4.4.0
2121
with:
2222
node-version: 22
2323
registry-url: https://registry.npmjs.org/

0 commit comments

Comments
 (0)