Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump OPA version from v0.63.0 to v0.64.1 #1079

Merged
merged 1 commit into from
Apr 30, 2024
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
2 changes: 1 addition & 1 deletion PowerShell/ScubaGear/Modules/ScubaConfig/ScubaConfig.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class ScubaConfig {
"Hybrid Identity Administrator",
"Application Administrator",
"Cloud Application Administrator")
DefaultOPAVersion = '0.63.0'
DefaultOPAVersion = '0.64.1'
}

static [object]ScubaDefault ([string]$Name){
Expand Down
2 changes: 1 addition & 1 deletion PowerShell/ScubaGear/Modules/Support/Support.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ function Install-OPA {

# Constants
$ACCEPTABLEVERSIONS = '0.59.0', '0.60.0', '0.61.0',
'0.62.1', [ScubaConfig]::ScubaDefault('DefaultOPAVersion') # End Versions
'0.62.1', '0.63.0', [ScubaConfig]::ScubaDefault('DefaultOPAVersion') # End Versions
$FILENAME = @{ Windows = "opa_windows_amd64.exe"; MacOS = "opa_darwin_amd64"; Linux = "opa_linux_amd64_static"}

# Set prefernces for writing messages
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ The `Install-OPA` cmdlet can also be run by itself to download the executable.
In the event of an unsuccessful download, users can manually download the OPA executable with the following steps:

1. Go to the [OPA download site](https://www.openpolicyagent.org/docs/latest/#running-opa).
2. Look for the latest OPA version (Currently v0.63.0) for ScubaGear and select the corresponding version on top left of the website.
2. Look for the latest OPA version (Currently v0.64.1) for ScubaGear and select the corresponding version on top left of the website.
3. Navigate to the menu on left side of the screen: Introduction - Running OPA - Download OPA
4. Locate the downloaded file, add the file to your desired location (default is ~\\.scubagear\Tools), open PowerShell, and use the following command to check the downloaded OPA version:

Expand Down