File tree Expand file tree Collapse file tree 12 files changed +15
-15
lines changed Expand file tree Collapse file tree 12 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 15
15
contents : read
16
16
name : lint github workflows
17
17
steps :
18
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
18
+ - uses : actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
19
19
- name : Add actionlint problem matchers
20
20
run : |
21
21
# https://github.com/rhysd/actionlint/blob/3a2f2c7/docs/usage.md#problem-matchers
Original file line number Diff line number Diff line change 27
27
runs-on : ubuntu-latest
28
28
needs : getChangedChart
29
29
steps :
30
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
30
+ - uses : actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
31
31
- run : pip install yq
32
32
- name : Install sponge
33
33
run : sudo apt-get -yq install moreutils
48
48
env :
49
49
CHART : ${{ needs.getChangedChart.outputs.chart }}
50
50
steps :
51
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
51
+ - uses : actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
52
52
with :
53
53
ref : ${{ github.event.pull_request.head.sha }}
54
54
- run : pip install yq
Original file line number Diff line number Diff line change 21
21
config-file : .github/release-please/config.json
22
22
manifest-file : .github/release-please/manifest.json
23
23
id : release-please
24
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
24
+ - uses : actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
25
25
if : ${{ steps.release-please.outputs.prs_created == 'true' }}
26
26
- name : Set PRs to auto-merge
27
27
if : ${{ steps.release-please.outputs.prs_created == 'true' }}
Original file line number Diff line number Diff line change 19
19
outputs :
20
20
charts : ${{ steps.getCharts.outputs.charts }}
21
21
steps :
22
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
22
+ - uses : actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
23
23
- run : pip install yq
24
24
- name : Get all charts
25
25
id : getCharts
Original file line number Diff line number Diff line change 32
32
CT_TARGET_BRANCH : ${{ github.event.pull_request.base.ref || github.event.merge_group.base_ref || github.event.repository.default_branch }}
33
33
CHART : ${{ matrix.chart }}
34
34
steps :
35
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
35
+ - uses : actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
36
36
with :
37
37
fetch-depth : 0
38
38
Original file line number Diff line number Diff line change 25
25
env :
26
26
CT_TARGET_BRANCH : ${{ github.event.pull_request.base.ref || github.event.repository.default_branch }}
27
27
steps :
28
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
28
+ - uses : actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
29
29
with :
30
30
ref : ${{ github.event.pull_request.head.sha }}
31
31
- run : pip install yq
49
49
env :
50
50
GITHUB_TOKEN : ${{ secrets.ACTIONS_BOT_TOKEN }}
51
51
steps :
52
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
52
+ - uses : actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
53
53
- uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
54
54
with :
55
55
name : comment_body
Original file line number Diff line number Diff line change 35
35
env :
36
36
CHART : ${{ matrix.chart }}
37
37
steps :
38
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
38
+ - uses : actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
39
39
- uses : oras-project/setup-oras@8d34698a59f5ffe24821f0b48ab62a3de8b64b20 # v1
40
40
41
41
- run : helm package --dependency-update "${CHART}"
Original file line number Diff line number Diff line change 26
26
CONFIG_FILE : .github/release-please/config.json
27
27
CHART : ${{ needs.getChangedChart.outputs.chart }}
28
28
steps :
29
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
29
+ - uses : actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
30
30
with :
31
31
repository : ${{ github.event.pull_request.head.repo.full_name }}
32
32
ref : ${{ github.event.pull_request.head.ref }}
58
58
run : |
59
59
echo 'No chart has been changed?' >&2
60
60
exit 1
61
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
61
+ - uses : actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
62
62
with :
63
63
repository : ${{ github.event.pull_request.head.repo.full_name }}
64
64
ref : ${{ github.event.pull_request.head.ref }}
Original file line number Diff line number Diff line change 24
24
matrix :
25
25
chart : ${{ fromJson(needs.getAllCharts.outputs.charts) }}
26
26
steps :
27
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
27
+ - uses : actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
28
28
- run : /home/linuxbrew/.linuxbrew/bin/brew install grype
29
29
- run : pip install yq
30
30
- name : Install sponge
Original file line number Diff line number Diff line change 22
22
matrix :
23
23
chart : ${{ fromJson(needs.getAllCharts.outputs.charts) }}
24
24
steps :
25
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
25
+ - uses : actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
26
26
with :
27
27
token : ${{ secrets.ACTIONS_BOT_TOKEN }}
28
28
You can’t perform that action at this time.
0 commit comments