Skip to content

Commit b0c25a8

Browse files
committed
update checkout and echo provision env details
1 parent 6689378 commit b0c25a8

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
nslookup artifactory.delivery.puppetlabs.net
9292
9393
- name: Checkout
94-
uses: actions/checkout@v3
94+
uses: actions/checkout@v4
9595
with:
9696
ref: ${{ github.event.pull_request.head.sha }}
9797

@@ -110,6 +110,9 @@ jobs:
110110
- name: Provision test environment
111111
run: |
112112
bundle exec rake "litmus:provision[${{matrix.platforms.provider}},${{ matrix.platforms.image }}]"
113+
# Redact password
114+
FILE='spec/fixtures/litmus_inventory.yaml'
115+
sed -e 's/password: .*/password: "[redacted]"/' < $FILE || true
113116
114117
- name: Install agent
115118
run: |

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
nslookup artifactory.delivery.puppetlabs.net
8989
9090
- name: Checkout
91-
uses: actions/checkout@v3
91+
uses: actions/checkout@v4
9292
with:
9393
ref: ${{ github.event.pull_request.head.sha }}
9494

0 commit comments

Comments
 (0)