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
2 changes: 1 addition & 1 deletion packaging/scripts/mongodb-backup_builder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ install_golang() {
elif [ x"$ARCH" = "xaarch64" ]; then
GO_ARCH="arm64"
fi
GO_VERSION="1.25.3"
GO_VERSION="1.25.7"
GO_TAR="go${GO_VERSION}.linux-${GO_ARCH}.tar.gz"
GO_URL="https://downloads.percona.com/downloads/packaging/go/${GO_TAR}"
DL_PATH="/tmp/${GO_TAR}"
Expand Down
4 changes: 2 additions & 2 deletions pbm/storage/gcs/google_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ func newGoogleClient(cfg *Config, l log.LogEvent) (*googleClient, error) {
// We only check the credentials type, the scoped used hear doesn't really matter
adc, adcErr := google.FindDefaultCredentials(ctx, storagegcs.ScopeReadOnly)
if adcErr != nil {
return nil, fmt.Errorf("finding default credentials: %w", err)
return nil, fmt.Errorf("finding default credentials: %w", adcErr)
}
adcErr = validateDefaultCredentialType(adc)
if adcErr != nil {
return nil, fmt.Errorf("validate default credential type: %w", err)
return nil, fmt.Errorf("validate default credential type: %w", adcErr)
}
cli, err = storagegcs.NewClient(ctx)
}
Expand Down
2 changes: 1 addition & 1 deletion pbm/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
)

// current PBM version
const version = "2.12.0"
const version = "2.13.0"

var (
platform string
Expand Down
Loading