Skip to content

Commit a50e8d0

Browse files
authored
Merge branch 'main' into Link-/prep-4.1.2
2 parents aa55e5f + acc9ae5 commit a50e8d0

File tree

4 files changed

+33
-11
lines changed

4 files changed

+33
-11
lines changed

.github/dependabot.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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: "github-actions"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"
12+
groups:
13+
minor-actions-dependencies:
14+
update-types: [minor, patch]
15+
16+
- package-ecosystem: "npm"
17+
directory: "/"
18+
schedule:
19+
interval: "daily"
20+
allow:
21+
- dependency-type: direct
22+
- dependency-type: production

.github/workflows/close-inactive-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
issues: write
1111
pull-requests: write
1212
steps:
13-
- uses: actions/stale@v3
13+
- uses: actions/stale@v9
1414
with:
1515
days-before-issue-stale: 200
1616
days-before-issue-close: 5

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ jobs:
1717

1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121

2222
# Initializes the CodeQL tools for scanning.
2323
- name: Initialize CodeQL
24-
uses: github/codeql-action/init@v2
24+
uses: github/codeql-action/init@v3
2525
# Override language selection by uncommenting this and choosing your languages
2626
# with:
2727
# languages: go, javascript, csharp, python, cpp, java, ruby
2828

2929
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
3030
# If this step fails, then you should remove it and run the build manually (see below).
3131
- name: Autobuild
32-
uses: github/codeql-action/autobuild@v2
32+
uses: github/codeql-action/autobuild@v3
3333

3434
# ℹ️ Command-line programs to run using the OS shell.
3535
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -43,4 +43,4 @@ jobs:
4343
# make release
4444

4545
- name: Perform CodeQL Analysis
46-
uses: github/codeql-action/analyze@v2
46+
uses: github/codeql-action/analyze@v3

.github/workflows/workflow.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
runs-on: ${{ matrix.os }}
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
- name: Setup Node.js 20.x
25-
uses: actions/setup-node@v3
25+
uses: actions/setup-node@v4
2626
with:
2727
node-version: 20.x
2828
cache: npm
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ${{ matrix.os }}
4444
steps:
4545
- name: Checkout
46-
uses: actions/checkout@v3
46+
uses: actions/checkout@v4
4747
- name: Generate files in working directory
4848
shell: bash
4949
run: __tests__/create-cache-files.sh ${{ runner.os }} test-cache
@@ -66,7 +66,7 @@ jobs:
6666
runs-on: ${{ matrix.os }}
6767
steps:
6868
- name: Checkout
69-
uses: actions/checkout@v3
69+
uses: actions/checkout@v4
7070
- name: Restore cache
7171
uses: ./
7272
with:
@@ -96,7 +96,7 @@ jobs:
9696
https_proxy: http://squid-proxy:3128
9797
steps:
9898
- name: Checkout
99-
uses: actions/checkout@v3
99+
uses: actions/checkout@v4
100100
- name: Generate files
101101
run: __tests__/create-cache-files.sh proxy test-cache
102102
- name: Save cache
@@ -119,7 +119,7 @@ jobs:
119119
https_proxy: http://squid-proxy:3128
120120
steps:
121121
- name: Checkout
122-
uses: actions/checkout@v3
122+
uses: actions/checkout@v4
123123
- name: Restore cache
124124
uses: ./
125125
with:

0 commit comments

Comments
 (0)