diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index b966aaa59c..e7be263884 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,7 +18,7 @@ jobs: cspell-action: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: streetsidesoftware/cspell-action@v2.1.1 with: files: '**/*.md' @@ -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 diff --git a/content/custom_resource_glossary.md b/content/custom_resource_glossary.md index 50584c9a8d..60ce79bbc8 100644 --- a/content/custom_resource_glossary.md +++ b/content/custom_resource_glossary.md @@ -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 @@ -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 @@ -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