@daiyam/artifact-lang-js 0.9.5 → 0.10.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daiyam/artifact-lang-js",
3
- "version": "0.9.5",
3
+ "version": "0.10.0",
4
4
  "description": "The base configuration for my javascript projects",
5
5
  "author": {
6
6
  "name": "Baptiste Augrain",
@@ -31,5 +31,5 @@
31
31
  "project-template",
32
32
  "scaffold"
33
33
  ],
34
- "gitHead": "3be72e265e3e01b70f74c9bdc170aad003f8067b"
34
+ "gitHead": "0ca975f24ab580f624d50e16041de3e48014f5cf"
35
35
  }
@@ -1,7 +1,9 @@
1
1
  version: 2
2
2
  updates:
3
3
  # Maintain dependencies for GitHub Actions
4
- - package-ecosystem: "github-actions"
5
- directory: "/"
4
+ - package-ecosystem: github-actions
5
+ directory: /
6
6
  schedule:
7
- interval: "weekly"
7
+ interval: weekly
8
+ cooldown:
9
+ default-days: 7
@@ -4,16 +4,18 @@ on:
4
4
  branches: [ master ]
5
5
  paths-ignore:
6
6
  - '**/*.md'
7
+ permissions: {}
7
8
  jobs:
8
9
  check:
9
10
  runs-on: ubuntu-latest
10
11
  steps:
11
12
  - name: Checkout code
12
- uses: actions/checkout@v6
13
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
13
14
  with:
14
15
  fetch-depth: 0
16
+ persist-credentials: false
15
17
  - name: Setup Node.js environment
16
- uses: actions/setup-node@v6
18
+ uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
17
19
  with:
18
20
  node-version-file: '.nvmrc'
19
21
  - name: Install dependencies
@@ -2,11 +2,15 @@ name: Lock Closed Threads
2
2
  on:
3
3
  schedule:
4
4
  - cron: '0 2 * * *'
5
+ permissions:
6
+ issues: write
7
+ pull-requests: write
8
+ discussions: write
5
9
  jobs:
6
10
  lock:
7
11
  runs-on: ubuntu-latest
8
12
  steps:
9
- - uses: dessant/lock-threads@v6
13
+ - uses: dessant/lock-threads@7266a7ce5c1df01b1c6db85bf8cd86c737dadbe7 # v6.0.0
10
14
  with:
11
15
  github-token: ${{ github.token }}
12
16
  issue-inactive-days: '90'
@@ -8,7 +8,7 @@ jobs:
8
8
  stale:
9
9
  runs-on: ubuntu-latest
10
10
  steps:
11
- - uses: actions/stale@v10
11
+ - uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10.2.0
12
12
  with:
13
13
  days-before-stale: 90
14
14
  days-before-close: 30
@@ -0,0 +1,19 @@
1
+ name: GitHub Actions Security Analysis with zizmor
2
+ on:
3
+ push:
4
+ branches: [ master ]
5
+ pull_request:
6
+ branches: [ "**" ]
7
+ permissions: {}
8
+ jobs:
9
+ zizmor:
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ security-events: write
13
+ steps:
14
+ - name: Checkout repo
15
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
16
+ with:
17
+ persist-credentials: false
18
+ - name: Run zizmor
19
+ uses: zizmorcore/zizmor-action@71321a20a9ded102f6e9ce5718a2fcec2c4f70d8 # v0.5.2
@@ -0,0 +1,6 @@
1
+ {
2
+ "force": true,
3
+ "includeLocked": true,
4
+ "maturityPeriod": 7,
5
+ "write": true
6
+ }
@@ -1,14 +1,19 @@
1
1
  {
2
2
  "scripts": {
3
+ "ci:pinact": "PINACT_MIN_AGE=7 pinact run",
4
+ "ci:zizmor": "zizmor .",
5
+ "ci:zizmor:fix": "zizmor . --fix=all",
6
+ "deps:update": "taze",
3
7
  "prepare": "husky; fixpack || true"
4
8
  },
5
9
  "dependencies": {},
6
10
  "devDependencies": {
7
- "@commitlint/cli": "^19.7.1",
8
- "@commitlint/config-conventional": "^19.7.1",
9
- "fixpack": "^4.0.0",
10
- "husky": "^9.1.7",
11
- "lint-staged": "^16.1.4"
11
+ "@commitlint/cli": "19.8.1",
12
+ "@commitlint/config-conventional": "19.8.1",
13
+ "fixpack": "4.0.0",
14
+ "husky": "9.1.7",
15
+ "lint-staged": "16.4.0",
16
+ "taze": "19.11.0"
12
17
  },
13
18
  "keywords": []
14
19
  }