From 3424b52d08b4c47dbb213775f1ab9d14c7d3fb0e Mon Sep 17 00:00:00 2001 From: Josh Gross Date: Tue, 13 May 2025 11:04:53 -0400 Subject: [PATCH] typo fixes --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5f8b8f5..466ed46 100644 --- a/README.md +++ b/README.md @@ -66,9 +66,9 @@ Actions expressions are evaluated before the `script` is passed to the action, s It's highly recommended to *not* evaluate expressions directly in the `script` to avoid [script injections](https://docs.github.com/actions/security-for-github-actions/security-guides/security-hardening-for-github-actions#understanding-the-risk-of-script-injections) -and potential `SyntaxError`s when the expression is not valid JavaScript code (particlarly when it comes to inproperly escaped strings). +and potential `SyntaxError`s when the expression is not valid JavaScript code (particularly when it comes to improperly escaped strings). -To pass inputs, set `env` vars on the action step and reference then them in your script with `process.env`: +To pass inputs, set `env` vars on the action step and reference them in your script with `process.env`: ```yaml - uses: actions/github-script@v7