@tarsilla/commit-wizard 1.1.0 → 1.1.1

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": "@tarsilla/commit-wizard",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -9,6 +9,8 @@ inputs:
9
9
  required: true
10
10
  default: reports
11
11
  runs:
12
+ #permissions:
13
+ # security-events: write # to be set in workflow run
12
14
  using: composite
13
15
  steps:
14
16
  - name: Initialize CodeQL
@@ -15,6 +15,10 @@ outputs:
15
15
  description: The URL of the page
16
16
  value: ${{ steps.deploy.outputs.page_url }}
17
17
  runs:
18
+ #permissions:
19
+ # contents: read # to be set in workflow run
20
+ # pages: write # to be set in workflow run
21
+ # id-token: write # to be set in workflow run
18
22
  using: composite
19
23
  steps:
20
24
  - name: Install
@@ -1,9 +1,12 @@
1
1
  name: NPM Publish
2
2
  description: Github action to publish to npm as part of a github workflow for NodeJS projects
3
3
  inputs:
4
- npm-token:
4
+ token:
5
5
  required: true
6
6
  runs:
7
+ #permissions:
8
+ # contents: write # to be set in workflow run
9
+ # id-token: write # to be set in workflow run
7
10
  using: composite
8
11
  steps:
9
12
  - name: Setup Node.js
@@ -22,4 +25,4 @@ runs:
22
25
  run: npx semantic-release
23
26
  env:
24
27
  GITHUB_TOKEN: ${{ github.token }}
25
- NPM_TOKEN: ${{ inputs.npm-token }}
28
+ NPM_TOKEN: ${{ inputs.token }}