env-secrets 0.1.8 → 0.1.10

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.
@@ -4,6 +4,10 @@ name: Release and Publish
4
4
  on:
5
5
  workflow_dispatch:
6
6
 
7
+ permissions:
8
+ contents: write
9
+ packages: read
10
+
7
11
  jobs:
8
12
  release:
9
13
  if: ${{ github.ref == 'refs/heads/main' }}
@@ -36,7 +40,7 @@ jobs:
36
40
  run: yarn release patch --ci
37
41
  env:
38
42
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
39
- GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
43
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
40
44
 
41
45
  - name: Notify failures
42
46
  if: failure()
package/README.md CHANGED
@@ -5,7 +5,6 @@ Get secrets from a vault and inject them as environment variables
5
5
  [![Version](https://img.shields.io/npm/v/env-secrets.svg)](https://npmjs.org/package/env-secrets)
6
6
  [![build](https://img.shields.io/github/actions/workflow/status/markcallen/env-secrets/build-main.yml)](https://github.com/markcallen/env-secrets/tree/main)
7
7
  [![test](https://img.shields.io/github/actions/workflow/status/markcallen/env-secrets/unittests.yaml)](https://github.com/markcallen/env-secrets/tree/main)
8
- ![vulnerabilities](https://img.shields.io/snyk/vulnerabilities/github/markcallen/env-secrets)
9
8
  [![Downloads/week](https://img.shields.io/npm/dw/env-secrets.svg)](https://npmjs.org/package/env-secrets)
10
9
  [![License](https://img.shields.io/npm/l/env-secrets.svg)](https://github.com/markcallen/env-secrets/blob/main/LICENSE)
11
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "env-secrets",
3
- "version": "0.1.8",
3
+ "version": "0.1.10",
4
4
  "description": "get secrets from a secrets vault and inject them into the running environment",
5
5
  "main": "index.js",
6
6
  "author": "Mark C Allen (@markcallen)",