From 5200476e0e6c8d64bb0aa3b9e8303cd288e816fe Mon Sep 17 00:00:00 2001 From: Maxime Date: Thu, 2 Feb 2023 17:26:50 +1100 Subject: [PATCH] Update example after v4 release update readme referencing the v4 version that has been released recently --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5b909875..b9e669a0 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Basic (when the project's `package.json` has a `volta` property with `node` and/ ```yaml steps: - uses: actions/checkout@v3 -- uses: volta-cli/action@v3 +- uses: volta-cli/action@v4 - run: npm install - run: npm test ``` @@ -48,7 +48,7 @@ Manually specifying node and/or yarn versions (e.g. to test a project without `v ```yaml steps: - uses: actions/checkout@v3 -- uses: volta-cli/action@v3 +- uses: volta-cli/action@v4 with: node-version: 18.x yarn-version: 1.19.1 @@ -66,7 +66,7 @@ strategy: steps: - uses: actions/checkout@v3 -- uses: volta-cli/action@v3 +- uses: volta-cli/action@v4 with: node-version: ${{ matrix.node-version }} @@ -83,7 +83,7 @@ strategy: steps: - uses: actions/checkout@v3 -- uses: volta-cli/action@v3 +- uses: volta-cli/action@v4 with: node-version: ${{ matrix.node-version }} npm-version: '7' @@ -97,7 +97,7 @@ In some cases, you may know the particular variant of the installer that you wan ```yaml steps: - uses: actions/checkout@v3 -- uses: volta-cli/action@v3 +- uses: volta-cli/action@v4 with: variant: 'linux-openssl-rhel'