Skip to content

Commit 7d08231

Browse files
authored
Merge pull request #169 from SovereignCloudStack/kr/update-builder-image
🌱 update builder image to 1.1.9 version
2 parents 31e5a3d + 034fec9 commit 7d08231

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.builder-image-version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.8
1+
1.1.9

.github/workflows/pr-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
2222
runs-on: ubuntu-latest
2323
container:
24-
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.8
24+
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.9
2525
credentials:
2626
username: ${{ github.actor }}
2727
password: ${{ secrets.github_token }}

.github/workflows/schedule-scan-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Trivy
1010
runs-on: ubuntu-latest
1111
container:
12-
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.8
12+
image: ghcr.io/sovereigncloudstack/cso-builder:1.1.9
1313
credentials:
1414
username: ${{ github.actor }}
1515
password: ${{ secrets.github_token }}

pkg/github/client/github_client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ func (c *realGhClient) GetReleaseByTag(ctx context.Context, tag string) (*github
103103

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

0 commit comments

Comments
 (0)