Skip to content

Commit 59ee8b6

Browse files
Merge branch 'main' into dependabot/github_actions/actions/upload-artifact-4.4.3
2 parents e2bf203 + b441717 commit 59ee8b6

File tree

5 files changed

+420
-155
lines changed

5 files changed

+420
-155
lines changed

.github/workflows/actions_release.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Release GitHub Actions
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
tag:
7+
description: "Tag for the release"
8+
required: true
9+
10+
permissions:
11+
contents: read
12+
13+
jobs:
14+
release:
15+
permissions:
16+
actions: read
17+
id-token: write
18+
contents: write
19+
uses: step-security/reusable-workflows/.github/workflows/actions_release.yaml@v1
20+
with:
21+
tag: "${{ github.event.inputs.tag }}"

.github/workflows/audit-package.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: NPM Audit Fix Run
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
force:
7+
description: "Use --force flag for npm audit fix?"
8+
required: true
9+
type: boolean
10+
base_branch:
11+
description: "Specify a base branch"
12+
required: false
13+
default: "main"
14+
15+
jobs:
16+
audit-fix:
17+
uses: step-security/reusable-workflows/.github/workflows/npm_audit_fix.yml@v1
18+
with:
19+
force: ${{ inputs.force }}
20+
base_branch: ${{ inputs.base_branch }}
21+
22+
permissions:
23+
contents: write
24+
pull-requests: write

.github/workflows/release.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ inputs:
1111
required: false
1212
default: 'https://github.com/mikefarah/yq/releases/download/{version}/yq_{platform}_{arch}'
1313
runs:
14-
using: 'node16'
14+
using: 'node20'
1515
main: 'dist/index.js'
1616
icon: book-open
1717
color: '#FFFF00'

0 commit comments

Comments
 (0)