@@ -110,8 +110,8 @@ jobs:
110110` ` `
111111
112112This configuration contains a single job, with two steps, that will only run on pull request events.
113- It does not override any of the ` phylum-ci` arguments, which are all either optional or default to secure values.
114- Let's take a deeper dive into each part of the configuration :
113+ It provides debug output but otherwise does not override any of the ` phylum-ci` arguments, which are all either
114+ optional or default to secure values. Let's take a deeper dive into each part of the configuration :
115115
116116# ## Workflow and Job names
117117
@@ -197,7 +197,7 @@ See the [GitHub documentation][scopes] for more info.
197197` ` `
198198
199199When using a personal access token (PAT) instead, the token should be created with the `repo` scope or
200- minimally the with `public_repo` scope if private repositories will not be used with the PAT.
200+ minimally with the `public_repo` scope if private repositories will not be used with the PAT.
201201See the [GitHub documentation][PAT] for more info.
202202
203203` ` ` yaml
@@ -314,13 +314,13 @@ view the [script options output][script_options] for the latest release.
314314
315315 # NOTE: These are examples. Only one `cmd` entry line is expected.
316316 #
317- # Use the defaults for all the arguments.
318- # The default behavior is to only analyze newly added dependencies against
319- # the active policy set at the Phylum project level.
317+ # Use the defaults for all the arguments and provide debug level output .
318+ # The default behavior is to only analyze newly added dependencies
319+ # against the active policy set at the Phylum project level.
320320 # This entry does not have to be specified since it is the default.
321- cmd : phylum-ci
322- # Provide debug level output.
323321 cmd : phylum-ci -vv
322+ # Same as the previous entry, but without debug level output.
323+ cmd : phylum-ci
324324 # Consider all dependencies in analysis results instead of just the newly added ones.
325325 # The default is to only analyze newly added dependencies, which can be useful for
326326 # existing code bases that may not meet established policy rules yet,
@@ -342,7 +342,7 @@ view the [script options output][script_options] for the latest release.
342342 # Analyze all dependencies in audit mode, to gain insight without failing builds.
343343 cmd : phylum-ci --all-deps --audit
344344 # Install a specific version of the Phylum CLI.
345- cmd : phylum-ci --phylum-release 4.8 .0 --force-install
345+ cmd : phylum-ci --phylum-release 6.5 .0 --force-install
346346 # Mix and match for your specific use case.
347347 cmd : |
348348 phylum-ci \
0 commit comments