@liflig/load-secrets 1.1.36 → 1.1.41

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.
@@ -18,6 +18,7 @@ jobs:
18
18
  timeout-minutes: 60
19
19
  runs-on: ubuntu-24.04
20
20
  permissions:
21
+ id-token: write # Required for OIDC
21
22
  contents: write
22
23
  pull-requests: write
23
24
  issues: write
@@ -28,9 +29,7 @@ jobs:
28
29
 
29
30
  - uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
30
31
  with:
31
- node-version: 24.9.0
32
-
33
- - uses: capralifecycle/actions-lib/configure-npm@b4bb65b0ab41499f4829fe99c4b33b0b5a363562 # v1.6.2
32
+ node-version: 24.10.0
34
33
 
35
34
  - name: install dependencies
36
35
  run: npm ci
@@ -46,5 +45,4 @@ jobs:
46
45
  if: ${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
47
46
  env:
48
47
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49
- NPM_TOKEN: ${{ secrets.SHARED_NPMJS_TOKEN }}
50
48
  run: npm run semantic-release
package/biome.jsonc CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://biomejs.dev/schemas/2.2.5/schema.json",
2
+ "$schema": "https://biomejs.dev/schemas/2.2.6/schema.json",
3
3
  "vcs": {
4
4
  "enabled": true,
5
5
  "clientKind": "git",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liflig/load-secrets",
3
- "version": "1.1.36",
3
+ "version": "1.1.41",
4
4
  "description": "Library for loading project secrets into AWS Secrets Manager",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -17,22 +17,23 @@
17
17
  "semantic-release": "semantic-release"
18
18
  },
19
19
  "publishConfig": {
20
- "access": "public"
20
+ "access": "public",
21
+ "provenance": true
21
22
  },
22
23
  "dependencies": {
23
- "@aws-sdk/client-secrets-manager": "3.908.0",
24
- "@aws-sdk/client-sts": "3.908.0",
24
+ "@aws-sdk/client-secrets-manager": "3.913.0",
25
+ "@aws-sdk/client-sts": "3.913.0",
25
26
  "chalk": "5.6.2",
26
27
  "read": "4.1.0",
27
28
  "typescript": "5.9.3"
28
29
  },
29
30
  "devDependencies": {
30
- "@biomejs/biome": "2.2.5",
31
- "@commitlint/cli": "19.8.1",
32
- "@commitlint/config-conventional": "19.8.1",
33
- "@types/node": "24.7.1",
31
+ "@biomejs/biome": "2.2.6",
32
+ "@commitlint/cli": "20.1.0",
33
+ "@commitlint/config-conventional": "20.0.0",
34
+ "@types/node": "24.8.1",
34
35
  "@types/read": "3.0.0",
35
36
  "husky": "9.1.7",
36
- "semantic-release": "24.2.9"
37
+ "semantic-release": "25.0.1"
37
38
  }
38
39
  }