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 07b937a commit afe1e5b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v4
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 @@ -81,7 +81,7 @@ jobs:

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

# double-check that we don't have any serious issues in our profile code
- name: LINT - Run InSpec Check
Expand Down
14 changes: 7 additions & 7 deletions src/courses/advanced/10.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ First, we need to make sure that the node that runs our pipeline will have acces

# checkout the profile, because that's where our profile is!
- name: PREP - Check out this repository
uses: actions/checkout@v4
uses: actions/checkout@v3
```
@tab `pipeline.yml` after adding more steps
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
# checkout the profile, because that's where our profile is!
- name: PREP - Check out this repository
uses: actions/checkout@v4
uses: actions/checkout@v3
```

:::
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
# checkout the profile, because that's where our profile is!
- name: PREP - Check out this repository
uses: actions/checkout@v4
uses: actions/checkout@v3
# double-check that we don't have any serious issues in our profile code
- name: LINT - Run InSpec Check
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
# checkout the profile, because that's where our profile is!
- name: PREP - Check out this repository
uses: actions/checkout@v4
uses: actions/checkout@v3
# double-check that we don't have any serious issues in our profile code
- name: LINT - Run InSpec Check
Expand Down Expand Up @@ -277,7 +277,7 @@ jobs:
# checkout the profile, because that's where our profile is!
- name: PREP - Check out this repository
uses: actions/checkout@v4
uses: actions/checkout@v3
# double-check that we don't have any serious issues in our profile code
- name: LINT - Run InSpec Check
Expand Down Expand Up @@ -373,7 +373,7 @@ jobs:
# checkout the profile, because that's where our profile is!
- name: PREP - Check out this repository
uses: actions/checkout@v4
uses: actions/checkout@v3
# double-check that we don't have any serious issues in our profile code
- name: LINT - Run InSpec Check
Expand Down Expand Up @@ -623,7 +623,7 @@ jobs:
# checkout the profile, because that's where our profile is!
- name: PREP - Check out this repository
uses: actions/checkout@v4
uses: actions/checkout@v3
# double-check that we don't have any serious issues in our profile code
- name: LINT - Run InSpec Check
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 @@ -67,7 +67,7 @@ jobs:
# checkout the profile, because that's where our profile is!
- name: PREP - Check out this repository
uses: actions/checkout@v4
uses: actions/checkout@v3
# double-check that we don't have any serious issues in our profile code
- name: LINT - Run InSpec Check
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 afe1e5b

Please sign in to comment.