File tree 6 files changed +27
-6
lines changed
6 files changed +27
-6
lines changed Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ include-paths:
9
9
- images/{{image}}/*
10
10
- .github/actions/should-build-image/*
11
11
- .github/workflows/__shared-ci.yml
12
- - .github/workflows/__shared-get-available-images-matrix.yml
12
+ - .github/workflows/__shared-get-available-images-matrix.yml
Original file line number Diff line number Diff line change 11
11
description : " Password or GitHub token (packages:read and packages:write scopes) used to log against the OCI registry."
12
12
required : true
13
13
14
+ permissions :
15
+ contents : read
16
+ issues : read
17
+ packages : write
18
+ pull-requests : read
19
+ statuses : write
20
+ # FIXME: This is a workaround for having workflow actions. See https://github.com/orgs/community/discussions/38659
21
+ id-token : write
22
+
14
23
jobs :
15
24
checks :
16
25
# FIXME: the new version of the linter fails with a lot of errors if upgraded
Original file line number Diff line number Diff line change 32
32
33
33
- uses : actions/upload-artifact@v4
34
34
with :
35
- name : changed-files
35
+ name : changed-files-${{ matrix.image }}
36
36
path : ./.github/release-config/${{ matrix.image }}-release-config.yml
37
37
38
38
publish-actions-readme :
48
48
49
49
- uses : actions/download-artifact@v4
50
50
with :
51
- name : changed-files
51
+ pattern : changed-files-*
52
+ merge-multiple : true
52
53
path : ./.github/release-config/
53
54
54
55
- uses : tibdex/github-app-token@v1
Original file line number Diff line number Diff line change 4
4
pull_request :
5
5
branches : [main]
6
6
7
+ # jscpd:ignore-start
8
+ permissions :
9
+ contents : read
10
+ issues : read
11
+ packages : write
12
+ pull-requests : read
13
+ statuses : write
14
+ # FIXME: This is a workaround for having workflow actions. See https://github.com/orgs/community/discussions/38659
15
+ id-token : write
16
+ # jscpd:ignore-end
17
+
7
18
jobs :
8
19
ci :
9
20
name : Continuous Integration
51
62
core.setOutput('comment-body','No images have been built.');
52
63
}
53
64
54
- - uses : hoverkraft-tech/ci-github-common/actions/create-or-update-comment@0.4.3
65
+ - uses : hoverkraft-tech/ci-github-common/actions/create-or-update-comment@0.15.0
55
66
with :
56
67
title : " Images have been built :sparkles: !"
57
68
body : |
Original file line number Diff line number Diff line change 1
1
ARG version=v3.12.0
2
2
FROM quay.io/helmpack/chart-testing:${version}
3
3
4
- LABEL org.opencontainers.image.source = "https://github.com/hoverkraft-tech/docker-base-images"
4
+ LABEL org.opencontainers.image.source= "https://github.com/hoverkraft-tech/docker-base-images"
5
5
6
6
# we can probably ignore warning about versions of such packages
7
7
# hadolint ignore=DL3018
Original file line number Diff line number Diff line change 1
1
FROM ubuntu:jammy
2
2
3
- LABEL org.opencontainers.image.source = "https://github.com/hoverkraft-tech/docker-base-images"
3
+ LABEL org.opencontainers.image.source= "https://github.com/hoverkraft-tech/docker-base-images"
4
4
5
5
ENV DEBIAN_FRONTEND=noninteractive \
6
6
TZ=UTC \
You can’t perform that action at this time.
0 commit comments