File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- name : Checkout current PR
15
- uses : actions/checkout@v2
15
+ uses : actions/checkout@v4
16
16
with :
17
17
fetch-depth : 0
18
18
- name : Run shellcheck
Original file line number Diff line number Diff line change 6
6
pull_request :
7
7
branches : [ main ]
8
8
9
+ # Even thought checkout@v3 is end-of-life, we cannot upgrade to v4
10
+ # because it cannot run on CentOS 7 and Ubuntu 18.04
9
11
jobs :
10
12
install-puppet :
11
13
name : ${{ matrix.collection }} / ${{ matrix.os.name }}
12
14
runs-on : ubuntu-latest
13
15
strategy :
14
16
fail-fast : false
15
17
matrix :
16
- collection : [ puppet6, puppet7, puppet8 ]
18
+ collection : [ puppet7, puppet8 ]
17
19
os : [
18
20
{ name: "CentOS 7", image: "litmusimage/centos:7" },
19
21
{ name: "Debian 10", image: "litmusimage/debian:10" },
26
28
image : ${{ matrix.os.image }}
27
29
steps :
28
30
- name : Checkout current PR
29
- uses : actions/checkout@v2
31
+ uses : actions/checkout@v3
30
32
with :
31
33
fetch-depth : 0
32
34
- name : Install puppet-agent from ${{ matrix.collection }} collection
You can’t perform that action at this time.
0 commit comments