Skip to content

Commit

Permalink
Revert version change
Browse files Browse the repository at this point in the history
Signed-off-by: Joyce Quach <[email protected]>
  • Loading branch information
jtquach1 committed Dec 12, 2024
1 parent 624fa9f commit 1a5e5b7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion src/courses/advanced/09.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
run: curl https://omnitruck.chef.io/install.sh | sudo bash -s -- -P inspec -v 5

- name: PREP - Check out this repository # because that's where our profile is!
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: LINT - Run InSpec Check # double-check that we don't have any serious issues in our profile code
run: inspec check $PROFILE
Expand Down
12 changes: 6 additions & 6 deletions src/courses/advanced/10.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ First, we need to make sure that the node that runs our pipeline will have acces
run: curl https://omnitruck.chef.io/install.sh | sudo bash -s -- -P inspec -v 5

- name: PREP - Check out this repository # because that's where our profile is!
uses: actions/checkout@v4
uses: actions/checkout@v3
```
@tab `pipeline.yml` after adding more steps
``` yaml
Expand All @@ -46,7 +46,7 @@ jobs:
run: curl https://omnitruck.chef.io/install.sh | sudo bash -s -- -P inspec -v 5
- name: PREP - Check out this repository # because that's where our profile is!
uses: actions/checkout@v4
uses: actions/checkout@v3
```
:::

Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
run: curl https://omnitruck.chef.io/install.sh | sudo bash -s -- -P inspec -v 5
- name: PREP - Check out this repository # because that's where our profile is!
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: LINT - Run InSpec Check # double-check that we don't have any serious issues in our profile code
run: inspec check $PROFILE
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
run: curl https://omnitruck.chef.io/install.sh | sudo bash -s -- -P inspec -v 5
- name: PREP - Check out this repository # because that's where our profile is!
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: LINT - Run InSpec Check # double-check that we don't have any serious issues in our profile code
run: inspec check $PROFILE
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
run: curl https://omnitruck.chef.io/install.sh | sudo bash -s -- -P inspec -v 5
- name: PREP - Check out this repository # because that's where our profile is!
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: LINT - Run InSpec Check # double-check that we don't have any serious issues in our profile code
run: inspec check $PROFILE
Expand Down Expand Up @@ -283,7 +283,7 @@ jobs:
run: curl https://omnitruck.chef.io/install.sh | sudo bash -s -- -P inspec -v 5
- name: PREP - Check out this repository # because that's where our profile is!
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: LINT - Run InSpec Check # double-check that we don't have any serious issues in our profile code
run: inspec check $PROFILE
Expand Down
2 changes: 1 addition & 1 deletion src/courses/advanced/11.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
run: curl https://omnitruck.chef.io/install.sh | sudo bash -s -- -P inspec -v 5
- name: PREP - Check out this repository # because that's where our profile is!
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: LINT - Run InSpec Check # double-check that we don't have any serious issues in our profile code
run: inspec check $PROFILE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
aws-secret-access-key: ${{ secrets.SAF_AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v2
- name: Clone full repository so we can push
run: git fetch --prune --unshallow
- name: Setup Ruby
Expand Down

0 comments on commit 1a5e5b7

Please sign in to comment.