File tree 9 files changed +15
-15
lines changed
9 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ permissions:
9
9
jobs :
10
10
image :
11
11
name : Build image
12
- runs-on : ubuntu-22 .04
12
+ runs-on : ubuntu-24 .04
13
13
strategy :
14
14
matrix :
15
15
image :
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ permissions:
10
10
jobs :
11
11
analyze :
12
12
name : Analysis
13
- runs-on : ' ubuntu-22 .04'
13
+ runs-on : ubuntu-24 .04
14
14
timeout-minutes : 360
15
15
16
16
permissions :
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ permissions:
15
15
jobs :
16
16
image :
17
17
name : Build image
18
- runs-on : ubuntu-22 .04
18
+ runs-on : ubuntu-24 .04
19
19
strategy :
20
20
fail-fast : false
21
21
matrix :
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ permissions:
9
9
jobs :
10
10
analysis :
11
11
name : Analysis
12
- runs-on : ubuntu-22 .04
12
+ runs-on : ubuntu-24 .04
13
13
14
14
permissions :
15
15
security-events : write
Original file line number Diff line number Diff line change 27
27
trivy-scan-deployments :
28
28
name : Scan deployments
29
29
if : ${{ inputs.deployments }}
30
- runs-on : ubuntu-22 .04
30
+ runs-on : ubuntu-24 .04
31
31
steps :
32
32
- name : Checkout
33
33
uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
45
45
trivy-scan-dockerfiles :
46
46
name : Scan Dockerfiles
47
47
if : ${{ inputs.dockerfiles }}
48
- runs-on : ubuntu-22 .04
48
+ runs-on : ubuntu-24 .04
49
49
steps :
50
50
- name : Checkout
51
51
uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
58
58
severity : CRITICAL,HIGH
59
59
60
60
trivy-scan-licenses :
61
- runs-on : ubuntu-22 .04
61
+ runs-on : ubuntu-24 .04
62
62
name : Scan licenses
63
63
steps :
64
64
- name : Checkout
75
75
trivy-scan-vulns :
76
76
permissions :
77
77
security-events : write
78
- runs-on : ubuntu-22 .04
78
+ runs-on : ubuntu-24 .04
79
79
name : Scan vulnerabilities
80
80
steps :
81
81
- name : Checkout
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ permissions:
8
8
jobs :
9
9
docs :
10
10
name : Check docs are buildable
11
- runs-on : ubuntu-22 .04
11
+ runs-on : ubuntu-24 .04
12
12
steps :
13
13
- name : Install dependencies
14
14
run : |
32
32
permissions :
33
33
pull-requests : read # for golangci/golangci-lint-action to fetch pull requests
34
34
name : lint
35
- runs-on : ubuntu-22 .04
35
+ runs-on : ubuntu-24 .04
36
36
steps :
37
37
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
38
38
- uses : actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5
46
46
args : -v --timeout 5m
47
47
build :
48
48
name : Build and check device plugins
49
- runs-on : ubuntu-22 .04
49
+ runs-on : ubuntu-24 .04
50
50
steps :
51
51
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
52
52
- uses : actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5
63
63
# run: bash <(curl -s https://codecov.io/bash)
64
64
envtest :
65
65
name : Test APIs using envtest
66
- runs-on : ubuntu-22 .04
66
+ runs-on : ubuntu-24 .04
67
67
strategy :
68
68
matrix :
69
69
version :
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ permissions:
10
10
jobs :
11
11
tag_fix :
12
12
name : Prepare image tag
13
- runs-on : ubuntu-22 .04
13
+ runs-on : ubuntu-24 .04
14
14
outputs :
15
15
fixed_tag : ${{ steps.fix.outputs.tag }}
16
16
env :
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ BUILD_ARGS="${BUILD_ARGS} --build-arg FINAL_BASE=gcr.io/distroless/static"
33
33
if [ -z " ${BUILDER} " -o " ${BUILDER} " = ' docker' -o " ${BUILDER} " = ' podman' ] ; then
34
34
${BUILDER} build --pull -t ${IMG} :${TAG} ${BUILD_ARGS} -f ${DOCKERFILE} .
35
35
elif [ " ${BUILDER} " = ' buildah' ] ; then
36
- BUILDAH_RUNTIME=runc buildah bud --pull-always -t ${IMG} :${TAG} ${BUILD_ARGS} -f ${DOCKERFILE} .
36
+ buildah bud --pull-always -t ${IMG} :${TAG} ${BUILD_ARGS} -f ${DOCKERFILE} .
37
37
else
38
38
(>&2 echo " Unknown builder ${BUILDER} " )
39
39
exit 1
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ TAG=${TAG:-devel}
20
20
if [ -z " $BUILDER " -o " $BUILDER " = ' docker' -o " $BUILDER " = ' podman' ] ; then
21
21
${BUILDER} build --pull -t ${IMG} :${TAG} " $CWD /$DIR /"
22
22
elif [ " $BUILDER " = ' buildah' ] ; then
23
- BUILDAH_RUNTIME=runc buildah bud --pull-always -t ${IMG} :${TAG} " $CWD /$DIR /"
23
+ buildah bud --pull-always -t ${IMG} :${TAG} " $CWD /$DIR /"
24
24
else
25
25
(>&2 echo " Unknown builder $BUILDER " )
26
26
exit 1
You can’t perform that action at this time.
0 commit comments