Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixup GitHub actions error messages #4037

Merged
merged 5 commits into from
Feb 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
cspell-action:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: streetsidesoftware/[email protected]
with:
files: '**/*.md'
Expand All @@ -32,15 +32,15 @@ jobs:
markdownlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
token: "${{ secrets.GITHUB_TOKEN }}"
- uses: carlosperate/download-file-action@v1.0.3
- uses: carlosperate/download-file-action@v1.1.2
id: download-mdl-config
with:
file-url: 'https://raw.githubusercontent.com/chef/chef-web-docs/main/.markdownlint.yaml'
file-name: 'markdownlint.yaml'
- uses: DavidAnson/markdownlint-cli2-action@v4
- uses: DavidAnson/markdownlint-cli2-action@v5
with:
globs: |
*.md
Expand Down
6 changes: 3 additions & 3 deletions content/custom_resource_glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ The following properties are identical to the properties in the execute resource
- `property :user`
- `property :sensitive`

Because both the custom properties and the **execute** properties are identical, this
Because both the custom properties and the __execute__ properties are identical, this
will result in an error message similar to:

```ruby
Expand Down Expand Up @@ -306,7 +306,7 @@ where:
- `user new_resource.user`
- `sensitive new_resource.sensitive`

Correctly use the properties of the **execute** resource and not the identically-named override properties of the custom resource.
Correctly use the properties of the __execute__ resource and not the identically-named override properties of the custom resource.

## property

Expand Down Expand Up @@ -566,7 +566,7 @@ reset_property(:password)

`coerce` is used to transform user input into a canonical form. The
value is passed in, and the transformed value returned as output. Lazy
values will **not** be passed to this method until after they are
values will __not__ be passed to this method until after they are
evaluated.

`coerce` is run in the context of the instance, which gives it access to
Expand Down