Skip to content

Commit 46189fa

Browse files
Merge pull request #86 from step-security/auto-cherry-pick
chore: Cherry-picked changes from upstream
2 parents 9a1706c + 6523996 commit 46189fa

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

.github/workflows/auto_cherry_pick.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ on:
1111
description: 'Script to run after audit fix'
1212
required: false
1313
default: 'npm run all'
14+
mode:
15+
description: 'Run mode: cherry-pick or verify'
16+
required: false
17+
default: 'cherry-pick'
18+
pull_request:
19+
types: [opened, synchronize, labeled]
1420

1521
permissions:
1622
contents: write
@@ -20,9 +26,10 @@ permissions:
2026

2127
jobs:
2228
cherry-pick:
23-
uses: step-security/reusable-workflows/.github/workflows/auto_cherry_pick.yaml@v1
29+
uses: step-security/reusable-workflows/.github/workflows/auto_cherry_pick.yaml@feature/verify-cherry-pick
2430
with:
2531
original-owner: 'jkroepke'
2632
repo-name: 'setup-vals'
2733
base_branch: ${{ inputs.base_branch }}
2834
script: ${{ inputs.script || 'npm run all' }}
35+
mode: ${{ github.event_name == 'pull_request' && contains(fromJson(toJson(github.event.pull_request.labels)).*.name, 'review-required') && 'verify' || (github.event_name == 'workflow_dispatch' && inputs.mode || '') }}

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32483,7 +32483,7 @@ var semverExports = requireSemver();
3248332483
const toolName = 'vals';
3248432484
const githubRepository = 'helmfile/vals';
3248532485
// renovate: github=helmfile/vals
32486-
const defaultVersion = 'v0.41.2';
32486+
const defaultVersion = 'v0.41.3';
3248732487
function binaryName(version, os, arch) {
3248832488
version = semverExports.clean(version) || version;
3248932489
return `${toolName}_${version}_${os}_${arch}.tar.gz`;

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/tool.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const toolName = 'vals'
55
export const githubRepository = 'helmfile/vals'
66

77
// renovate: github=helmfile/vals
8-
export const defaultVersion = 'v0.41.2'
8+
export const defaultVersion = 'v0.41.3'
99

1010
export function binaryName(version: string, os: string, arch: string): string {
1111
version = clean(version) || version

0 commit comments

Comments
 (0)