Skip to content

Commit

Permalink
Merge pull request #169 from SovereignCloudStack/kr/update-builder-image
Browse files Browse the repository at this point in the history
🌱 update builder image to 1.1.9 version
  • Loading branch information
kranurag7 authored May 31, 2024
2 parents 31e5a3d + 034fec9 commit 7d08231
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .builder-image-version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.8
1.1.9
2 changes: 1 addition & 1 deletion .github/workflows/pr-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
runs-on: ubuntu-latest
container:
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.8
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.9
credentials:
username: ${{ github.actor }}
password: ${{ secrets.github_token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/schedule-scan-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Trivy
runs-on: ubuntu-latest
container:
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.8
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.9
credentials:
username: ${{ github.actor }}
password: ${{ secrets.github_token }}
Expand Down
2 changes: 1 addition & 1 deletion pkg/github/client/github_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func (c *realGhClient) GetReleaseByTag(ctx context.Context, tag string) (*github

// DownloadReleaseAssets downloads a list of release assets.
func (c *realGhClient) DownloadReleaseAssets(ctx context.Context, release *github.RepositoryRelease, path string, assetlist []string) error {
if err := os.MkdirAll(path, os.ModePerm); err != nil {
if err := os.MkdirAll(path, os.ModePerm); err != nil { //nolint:gosec //nolint:ignore
return fmt.Errorf("failed to create destination directory: %w", err)
}
// Extract the release assets
Expand Down

0 comments on commit 7d08231

Please sign in to comment.