diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f4e9f9dd..957e3cc6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -50,7 +50,7 @@ jobs: OPTIONS: ${{ matrix.options }} SCRIPT: ${{ matrix.script }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Perform uglify, build & test shell: bash run: | diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ef25435..f4f4c311 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,8 +16,8 @@ jobs: NODE: ${{ matrix.node }} TYPE: ${{ matrix.script }} steps: - - uses: actions/checkout@v2 - - uses: actions/cache@v2 + - uses: actions/checkout@v3 + - uses: actions/cache@v3 with: path: tmp key: tmp ${{ matrix.script }} diff --git a/.github/workflows/ufuzz.yml b/.github/workflows/ufuzz.yml index 33feb201..43b6ed55 100644 --- a/.github/workflows/ufuzz.yml +++ b/.github/workflows/ufuzz.yml @@ -32,7 +32,7 @@ jobs: env: NODE: ${{ matrix.node }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Perform fuzzing shell: bash run: | diff --git a/test/release/install.sh b/test/release/install.sh index 2a650e25..9804c0e7 100755 --- a/test/release/install.sh +++ b/test/release/install.sh @@ -36,7 +36,7 @@ EOF } if [ $NATIVE ]; then unset -f timeout; fi -while !(git clone --branch v1.6.0 --depth 1 https://github.com/jasongin/nvs.git ~/.nvs); do +while !(git clone --branch v1.6.2 --depth 1 https://github.com/jasongin/nvs.git ~/.nvs); do rm -rf ~/.nvs done while ! timeout 60 bash -c ". ~/.nvs/nvs.sh add $NODE && nvs use $NODE"; do