File tree 2 files changed +12
-4
lines changed
2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+ # Enable updates for GitHub Actions
4
+ - package-ecosystem : " github-actions"
5
+ # Look for `.github/workflows` directory for GitHub Actions
6
+ directory : " /"
7
+ # Check the GitHub Actions weekly for updates
8
+ schedule :
9
+ interval : " weekly"
Original file line number Diff line number Diff line change 11
11
outputs :
12
12
matrix : ${{ steps.matrix.outputs.value }}
13
13
steps :
14
+ - name : Checkout code
15
+ uses : actions/checkout@v2
14
16
- id : matrix
15
17
run : |
16
- echo "value=$(cat repositories.json)" >> $GITHUB_OUTPUT
18
+ echo "value=$(jq -c < repositories.json | jq -R | sed -e 's/^"//' -e 's/"$//' )" >> $GITHUB_OUTPUT
17
19
- run : |
18
20
echo "${{ steps.matrix.outputs.value }}"
19
21
24
26
matrix :
25
27
value : ${{fromJSON(needs.matrix-setup.outputs.matrix)}}
26
28
steps :
27
- - name : Checkout code
28
- uses : actions/checkout@v2
29
-
30
29
- name : Set up Helm
31
30
uses : azure/setup-helm@v1
32
31
You can’t perform that action at this time.
0 commit comments