We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa704aa commit b9e8b22Copy full SHA for b9e8b22
1 file changed
.github/workflows/update-cli.yml
@@ -6,8 +6,6 @@ on:
6
new_cli_version:
7
description: 'New CLI version (optional)'
8
required: false
9
- repository_dispatch:
10
- types: [cli-version-update]
11
12
permissions:
13
contents: read
@@ -29,8 +27,8 @@ jobs:
29
27
LATEST_VERSION=$(curl -sL https://api.github.com/repos/Checkmarx/ast-cli/releases/latest | jq -r ".tag_name")
30
28
fi
31
CURRENT_VERSION=$(<checkmarx-ast-cli.version)
32
- echo ::set-output name=release_tag::$LATEST_VERSION
33
- echo ::set-output name=current_tag::$CURRENT_VERSION
+ echo "release_tag=$LATEST_VERSION" >> $GITHUB_OUTPUT
+ echo "current_tag=$CURRENT_VERSION" >> $GITHUB_OUTPUT
34
35
# Update the version file if the latest version differs
36
- name: Update Checkmarx CLI version in version file
0 commit comments