@ivuorinen/base-configs 1.0.9 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,51 +1,34 @@
|
|
|
1
1
|
---
|
|
2
2
|
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
|
3
|
-
name:
|
|
3
|
+
name: "CodeQL"
|
|
4
4
|
|
|
5
5
|
on:
|
|
6
6
|
push:
|
|
7
|
-
branches: [
|
|
7
|
+
branches: ["main"]
|
|
8
8
|
pull_request:
|
|
9
|
-
branches: [
|
|
9
|
+
branches: ["main"]
|
|
10
10
|
schedule:
|
|
11
|
-
- cron:
|
|
11
|
+
- cron: "30 1 * * 0"
|
|
12
12
|
merge_group:
|
|
13
13
|
|
|
14
|
-
permissions:
|
|
15
|
-
actions: read
|
|
16
|
-
contents: read
|
|
14
|
+
permissions: {}
|
|
17
15
|
|
|
18
16
|
jobs:
|
|
19
17
|
analyze:
|
|
20
|
-
name: Analyze
|
|
18
|
+
name: Analyze
|
|
21
19
|
runs-on: ubuntu-latest
|
|
22
20
|
permissions:
|
|
23
21
|
actions: read
|
|
24
22
|
contents: read
|
|
25
|
-
security-events: write
|
|
26
23
|
packages: read
|
|
27
|
-
|
|
24
|
+
security-events: write
|
|
28
25
|
strategy:
|
|
29
26
|
fail-fast: false
|
|
30
27
|
matrix:
|
|
31
|
-
|
|
32
|
-
- language: actions
|
|
33
|
-
build-mode: none
|
|
34
|
-
- language: javascript-typescript
|
|
35
|
-
build-mode: none
|
|
36
|
-
|
|
28
|
+
language: ["actions", "javascript"]
|
|
37
29
|
steps:
|
|
38
|
-
- name:
|
|
39
|
-
uses: actions/
|
|
40
|
-
|
|
41
|
-
- name: Initialize CodeQL
|
|
42
|
-
uses: github/codeql-action/init@c793b717bc78562f491db7b0e93a3a178b099162 # v4.32.5
|
|
30
|
+
- name: CodeQL Analysis
|
|
31
|
+
uses: ivuorinen/actions/codeql-analysis@9b5ae9da1b4cb135aee0ca52403e3924fba6e84f # v2026.03.10
|
|
43
32
|
with:
|
|
44
|
-
|
|
45
|
-
build-mode: ${{ matrix.build-mode }}
|
|
33
|
+
language: ${{ matrix.language }}
|
|
46
34
|
queries: security-and-quality
|
|
47
|
-
|
|
48
|
-
- name: Perform CodeQL Analysis
|
|
49
|
-
uses: github/codeql-action/analyze@c793b717bc78562f491db7b0e93a3a178b099162 # v4.32.5
|
|
50
|
-
with:
|
|
51
|
-
category: '/language:${{matrix.language}}'
|
|
@@ -49,7 +49,7 @@ jobs:
|
|
|
49
49
|
|
|
50
50
|
- name: Run PR Lint
|
|
51
51
|
# https://github.com/ivuorinen/actions
|
|
52
|
-
uses: ivuorinen/actions/pr-lint@
|
|
52
|
+
uses: ivuorinen/actions/pr-lint@9b5ae9da1b4cb135aee0ca52403e3924fba6e84f # v2026.03.10
|
|
53
53
|
env:
|
|
54
54
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
55
55
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
@@ -27,7 +27,7 @@ jobs:
|
|
|
27
27
|
steps:
|
|
28
28
|
- name: Run PR Lint
|
|
29
29
|
# https://github.com/ivuorinen/actions
|
|
30
|
-
uses: ivuorinen/actions/pr-lint@
|
|
30
|
+
uses: ivuorinen/actions/pr-lint@9b5ae9da1b4cb135aee0ca52403e3924fba6e84f # v2026.03.10
|
|
31
31
|
|
|
32
32
|
publish:
|
|
33
33
|
name: Publish
|
|
@@ -39,4 +39,4 @@ jobs:
|
|
|
39
39
|
with:
|
|
40
40
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
41
41
|
- name: ⤵️ Sync Latest Labels Definitions
|
|
42
|
-
uses: ivuorinen/actions/sync-labels@
|
|
42
|
+
uses: ivuorinen/actions/sync-labels@9b5ae9da1b4cb135aee0ca52403e3924fba6e84f # v2026.03.10
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.0.11](https://github.com/ivuorinen/base-configs/compare/v1.0.10...v1.0.11) (2026-03-12)
|
|
7
|
+
|
|
8
|
+
## [1.0.10](https://github.com/ivuorinen/base-configs/compare/v1.0.9...v1.0.10) (2026-03-06)
|
|
9
|
+
|
|
6
10
|
## [1.0.9](https://github.com/ivuorinen/base-configs/compare/v1.0.8...v1.0.9) (2026-03-05)
|
|
7
11
|
|
|
8
12
|
## [1.0.8](https://github.com/ivuorinen/base-configs/compare/v1.0.7...v1.0.8) (2026-03-05)
|