Skip to content

Commit

Permalink
chore: Update alpine base image to v3.18.9 (#331)
Browse files Browse the repository at this point in the history
  • Loading branch information
daniil-nedostup authored and SergK committed Oct 8, 2024
1 parent 331a0f6 commit 9b55db1
Show file tree
Hide file tree
Showing 21 changed files with 23 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
value: $(params.codebase_name)
- name: CHART_DIR
value: $(params.chart_dir)
image: alpine:3.18.6
image: alpine:3.18.9
script: |
#!/bin/sh
# Extract the chart name from the Chart.yaml
Expand Down
2 changes: 1 addition & 1 deletion charts/pipelines-library/templates/tasks/codenarc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ spec:
name: $(params.ci-nexus)
key: url
- name: codenarc-report
image: alpine:3.18.6
image: alpine:3.18.9
workingDir: $(workspaces.source.path)/$(params.PROJECT_DIR)
script: |
cat /workspace/source/build/reports/codenarc/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
description: Normalized version
steps:
- name: get-timestamp
image: alpine:3.18.6
image: alpine:3.18.9
script: |
ts=$(date "+%Y%m%d-%H%M%S")
nts=$(date "+%Y%m%d.%H%M%S")
Expand All @@ -33,7 +33,7 @@ spec:
echo ${nts} | tr -d "\n" | tee $(results.NORMALIZED_VERSION.path)
- name: get-version
image: alpine:3.18.6
image: alpine:3.18.9
env:
- name: BRANCH_NAME
value: "$(params.BRANCH_NAME)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ spec:
description: Current timestamp
steps:
- name: get-timestamp
image: alpine:3.18.6
image: alpine:3.18.9
script: |
ts=$(date "+%Y%m%d-%H%M%S")
echo "Current Timestamp: ${ts}"
echo ${ts} | tr -d "\n" | tee $(results.TIMESTAMP.path)
- name: get-version
image: alpine:3.18.6
image: alpine:3.18.9
env:
- name: BRANCH_NAME
value: "$(params.BRANCH_NAME)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
description: "Version"
- name: BASE_IMAGE
description: "The base image for the task"
default: "alpine:3.18.6"
default: "alpine:3.18.9"
steps:
- name: update-build-number
image: $(params.BASE_IMAGE)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
description: "Version"
- name: BASE_IMAGE
description: "The base image for the task"
default: "alpine:3.18.6"
default: "alpine:3.18.9"
steps:
- name: update-build-number
image: $(params.BASE_IMAGE)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
description: "Version"
- name: BASE_IMAGE
description: "The base image for the task"
default: "alpine:3.18.6"
default: "alpine:3.18.9"
steps:
- name: update-build-number
image: $(params.BASE_IMAGE)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
description: "Version"
- name: BASE_IMAGE
description: "The base image for the task"
default: "alpine:3.18.6"
default: "alpine:3.18.9"
steps:
- name: update-build-number
image: $(params.BASE_IMAGE)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
type: string
- name: BASE_IMAGE
description: "The base image for the task"
default: "alpine:3.18.6"
default: "alpine:3.18.9"
steps:
- name: update-build-number
image: $(params.BASE_IMAGE)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
default: "."
- name: BASE_IMAGE
description: "The base image for the task"
default: "alpine:3.18.6"
default: "alpine:3.18.9"
steps:
- name: update-build-number
image: $(params.BASE_IMAGE)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
description: "Version"
- name: BASE_IMAGE
description: "The base image for the task"
default: "alpine:3.18.6"
default: "alpine:3.18.9"
steps:
- name: update-build-number
image: $(params.BASE_IMAGE)
Expand Down
2 changes: 1 addition & 1 deletion charts/pipelines-library/templates/tasks/kaniko.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ spec:
mountPath: /kaniko/.custom-certs
{{- end }}
{{- include "resources" . | nindent 6 }}
- image: alpine:3.18.6
- image: alpine:3.18.9
name: write-url
env:
- name: CODEBASE_NAME
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
params:
- name: BASE_IMAGE
description: "The base image for the task"
default: "alpine:3.18.6"
default: "alpine:3.18.9"
results:
- name: DEPLOYABLE_MODULE_DIR
description: Maven deployable multimodule directory.
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/bitbucket/01-assert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ status:
app: example
steps:
- computeResources: {}
image: alpine:3.18.6
image: alpine:3.18.9
name: echo
script: |
#!/usr/bin/env sh
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/bitbucket/01-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ spec:
app: "example"
steps:
- name: echo
image: alpine:3.18.6
image: alpine:3.18.9
script: |
#!/usr/bin/env sh
echo "I'm ok!"
2 changes: 1 addition & 1 deletion tests/e2e/gerrit/01-assert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ status:
app: example
steps:
- computeResources: {}
image: alpine:3.18.6
image: alpine:3.18.9
name: echo
script: |
#!/usr/bin/env sh
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/gerrit/01-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ spec:
app: "example"
steps:
- name: echo
image: alpine:3.18.6
image: alpine:3.18.9
script: |
#!/usr/bin/env sh
echo "I'm ok!"
2 changes: 1 addition & 1 deletion tests/e2e/github/01-assert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ status:
app: example
steps:
- computeResources: {}
image: alpine:3.18.6
image: alpine:3.18.9
name: echo
script: |
#!/usr/bin/env sh
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/github/01-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ spec:
app: "example"
steps:
- name: echo
image: alpine:3.18.6
image: alpine:3.18.9
script: |
#!/usr/bin/env sh
echo "I'm ok!"
2 changes: 1 addition & 1 deletion tests/e2e/gitlab/01-assert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ status:
app: example
steps:
- computeResources: {}
image: alpine:3.18.6
image: alpine:3.18.9
name: echo
script: |
#!/usr/bin/env sh
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/gitlab/01-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ spec:
app: "example"
steps:
- name: echo
image: alpine:3.18.6
image: alpine:3.18.9
script: |
#!/usr/bin/env sh
echo "I'm ok!"

0 comments on commit 9b55db1

Please sign in to comment.