-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: Build docker image for the latest three available versions (#3)
* feat: update version store to contain multiple versions * Update Azure/azure-cli package version to 2.62.0 * fix: wrong versions file name * fix: remove duplicate azure-cli version * Update Azure/azure-cli package version to 2.62.0 * Update hashicorp/terraform package version to 1.9.3 * chore: temporary remove latest tag * chore: remove duplicate versions again * Update Azure/azure-cli package version to 2.62.0 * Update hashicorp/terraform package version to 1.9.3 * add json formatter for vscode * fix: remove duplicate versions * feat: add check to only add new version to versions.json * Update hashicorp/terraform package version to 1.9.4 * Update Azure/azure-cli package version to 2.63.0 * fix: remove message of unknown repository * Update Azure/azure-cli package version to 2.63.0 * chore: remove deprecated ::set-output to set github output * fix: do not push build provenance attestations on pull requests build since they only run for validation purposes * fix: escape matrix json suitable for github outputs * add ending new line to versions.json * disable artifact attestation on pull request since no images get's exported. See docker/build-push-action#906 --------- Co-authored-by: GitHub Action <action@github.com>
- Loading branch information
1 parent
9d62482
commit d949c91
Showing
4 changed files
with
50 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"files.insertFinalNewline": true, | ||
"[json]": { | ||
"editor.defaultFormatter": "vscode.json-language-features" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
{ | ||
"terraform_version": "1.9.5", | ||
"azure_cli_version": "2.63.0" | ||
"terraform_versions": [ | ||
"1.9.4", | ||
"1.9.3", | ||
"1.9.2" | ||
], | ||
"azure_cli_versions": [ | ||
"2.63.0", | ||
"2.62.0", | ||
"2.61.0" | ||
] | ||
} |