Skip to content

Commit 10fdd4b

Browse files
feat: support https proxy env variables (#121)
Co-authored-by: Miroslav Jonas <missing.manual@gmail.com>
1 parent 0e2d18b commit 10fdd4b

6 files changed

Lines changed: 31617 additions & 8435 deletions

File tree

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ width="100%" alt="Nx - Smart, Extensible Build Framework"></p>
1212

1313
**NOTE:** This documentation is for version `2.x.x+` which now uses the GitHub API to track successful workflows. You can find documentation for version `1.x.x` which used GIT tags [here](https://github.com/nrwl/nx-set-shas/blob/v1/README.md).
1414

15+
**NOTE:** The `v4` does no longer support deprecated Node versions. Supported version is `Node v18+`.
16+
1517
## Example Usage
1618

1719
**.github/workflows/ci.yml**
@@ -37,7 +39,7 @@ jobs:
3739
# OPTION 1) Environment variables
3840
# ===========================================================================
3941
- name: Derive appropriate SHAs for base and head for `nx affected` commands
40-
uses: nrwl/nx-set-shas@v3
42+
uses: nrwl/nx-set-shas@v4
4143

4244
- run: |
4345
echo "BASE: ${{ env.NX_BASE }}"
@@ -48,7 +50,7 @@ jobs:
4850
# ===========================================================================
4951
- name: Derive appropriate SHAs for base and head for `nx affected` commands
5052
id: setSHAs
51-
uses: nrwl/nx-set-shas@v3
53+
uses: nrwl/nx-set-shas@v4
5254

5355
- run: |
5456
echo "BASE: ${{ steps.setSHAs.outputs.base }}"
@@ -62,7 +64,7 @@ jobs:
6264

6365
<!-- start configuration-options -->
6466
```yaml
65-
- uses: nrwl/nx-set-shas@v3
67+
- uses: nrwl/nx-set-shas@v4
6668
with:
6769
# The "main" branch of your repository (the base branch which you target with PRs).
6870
# Common names for this branch include main and master.

0 commit comments

Comments
 (0)