@spokane-folio/security-incident 1.0.28 → 1.0.30

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.
@@ -15,10 +15,10 @@ jobs:
15
15
 
16
16
  steps:
17
17
  - name: Check out
18
- uses: actions/checkout@v4
18
+ uses: actions/checkout@v6
19
19
 
20
20
  - name: Set up Node
21
- uses: actions/setup-node@v4
21
+ uses: actions/setup-node@v6
22
22
  with:
23
23
  node-version: 18
24
24
  cache: yarn
@@ -16,12 +16,12 @@ jobs:
16
16
 
17
17
  steps:
18
18
  - name: Check out
19
- uses: actions/checkout@v4
19
+ uses: actions/checkout@v6
20
20
  with:
21
21
  fetch-depth: 0
22
22
 
23
23
  - name: Set up Node for npm
24
- uses: actions/setup-node@v4
24
+ uses: actions/setup-node@v6
25
25
  with:
26
26
  node-version: 18
27
27
  registry-url: 'https://registry.npmjs.org'
@@ -52,13 +52,10 @@ jobs:
52
52
  run: echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT
53
53
 
54
54
  - name: Create GitHub release
55
- uses: softprops/action-gh-release@v2
56
- with:
57
- tag_name: v${{ steps.pkg.outputs.version }}
58
- name: security-incident v${{ steps.pkg.outputs.version }}
59
- files: |
60
- module-descriptor.json
61
- *.tgz
62
-
63
-
64
-
55
+ env:
56
+ GH_TOKEN: ${{ github.token }}
57
+ run:
58
+ gh release create "v${{ steps.pkg.outputs.version }}" \
59
+ module-descriptor.json \
60
+ *.tgz \
61
+ --title "security-incident v${{ steps.pkg.outputs.version }}"
@@ -1,5 +1,5 @@
1
1
  {
2
- "id": "spokane-folio_security-incident-1.0.28",
2
+ "id": "spokane-folio_security-incident-1.0.30",
3
3
  "name": "Security incident tracking and trespass automation",
4
4
  "permissionSets": [
5
5
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spokane-folio/security-incident",
3
- "version": "1.0.28",
3
+ "version": "1.0.30",
4
4
  "description": "Security incident tracking and trespass automation",
5
5
  "main": "src/index.js",
6
6
  "repository": "",