Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30125,8 +30125,8 @@ function requireRe () {

// ## Pre-release Version Identifier
// A numeric identifier, or a non-numeric identifier.
// Non-numberic identifiers include numberic identifiers but can be longer.
// Therefore non-numberic identifiers must go first.
// Non-numeric identifiers include numeric identifiers but can be longer.
// Therefore non-numeric identifiers must go first.

createToken('PRERELEASEIDENTIFIER', `(?:${src[t.NONNUMERICIDENTIFIER]
}|${src[t.NUMERICIDENTIFIER]})`);
Expand Down Expand Up @@ -30822,7 +30822,7 @@ function requireDiff () {
return prefix + 'patch'
}

// high and low are preleases
// high and low are prereleases
return 'prerelease'
};

Expand Down Expand Up @@ -32381,7 +32381,7 @@ function requireSubset () {
// - If LT
// - If LT.semver is greater than any < or <= comp in C, return false
// - If LT is <=, and LT.semver does not satisfy every C, return false
// - If GT.semver has a prerelease, and not in prerelease mode
// - If LT.semver has a prerelease, and not in prerelease mode
// - If no C has a prerelease and the LT.semver tuple, return false
// - Else return true

Expand Down Expand Up @@ -33186,7 +33186,7 @@ function _getGlobal(key, defaultValue) {
const toolName = 'stackit';
const githubRepository = 'stackitcloud/stackit-cli';
// renovate: github=stackitcloud/stackit-cli
const defaultVersion = 'v0.52.0';
const defaultVersion = 'v0.53.1';
function binaryName(version, os, arch) {
version = semverExports.clean(version) || version;
return `stackit-cli_${version}_${os}_${arch}.${os === 'windows' ? 'zip' : 'tar.gz'}`;
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"@actions/exec": "3.0.0",
"@actions/http-client": "4.0.0",
"@actions/tool-cache": "4.0.0",
"semver": "7.7.3"
"semver": "7.7.4"
},
"engines": {
"node": ">=24.0.0"
Expand Down
2 changes: 1 addition & 1 deletion src/tool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const toolName = 'stackit'
export const githubRepository = 'stackitcloud/stackit-cli'

// renovate: github=stackitcloud/stackit-cli
export const defaultVersion = 'v0.52.0'
export const defaultVersion = 'v0.53.1'

export function binaryName(version: string, os: string, arch: string): string {
version = clean(version) || version
Expand Down