@codfish/actions 0.0.0-PR-84--785e14b → 0.0.0-PR-91--fc8a05e
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/comment/action.yml
CHANGED
|
@@ -46,7 +46,7 @@ runs:
|
|
|
46
46
|
- name: Check existing comments
|
|
47
47
|
id: check-comments
|
|
48
48
|
if: inputs.upsert == 'true'
|
|
49
|
-
uses: actions/github-script@
|
|
49
|
+
uses: actions/github-script@v8
|
|
50
50
|
with:
|
|
51
51
|
script: |
|
|
52
52
|
try {
|
|
@@ -69,7 +69,7 @@ runs:
|
|
|
69
69
|
|
|
70
70
|
- name: Update existing comment
|
|
71
71
|
if: steps.check-comments.outputs.comment-id != null
|
|
72
|
-
uses: actions/github-script@
|
|
72
|
+
uses: actions/github-script@v8
|
|
73
73
|
with:
|
|
74
74
|
script: |
|
|
75
75
|
try {
|
|
@@ -86,7 +86,7 @@ runs:
|
|
|
86
86
|
|
|
87
87
|
- name: Create new comment
|
|
88
88
|
if: steps.check-comments.outputs.comment-id == null
|
|
89
|
-
uses: actions/github-script@
|
|
89
|
+
uses: actions/github-script@v8
|
|
90
90
|
with:
|
|
91
91
|
script: |
|
|
92
92
|
try {
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"description": "Composite GitHub Actions for my projects.",
|
|
5
5
|
"author": "Chris O'Donnell <chris@codfish.dev>",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"version": "0.0.0-PR-
|
|
7
|
+
"version": "0.0.0-PR-91--fc8a05e",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "https://github.com/codfish/actions.git"
|
|
@@ -26,7 +26,7 @@ inputs:
|
|
|
26
26
|
description:
|
|
27
27
|
Whether to upgrade npm to v11.5.1. This is required for OIDC trusted publishing but can be disabled if you want to
|
|
28
28
|
shave off some run time and you are still using token-based authentication.
|
|
29
|
-
default:
|
|
29
|
+
default: false
|
|
30
30
|
|
|
31
31
|
outputs:
|
|
32
32
|
node-version:
|