fix: usage of deprecated version of Node.js (#4251)

This commit is contained in:
Hamir Mahal 2024-06-25 00:34:07 -07:00 committed by GitHub
parent ebc365d4d3
commit 1810189f54
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 8 deletions

View file

@ -47,11 +47,11 @@ jobs:
- name: Checkout changes
uses: actions/checkout@v4
- name: Run benchmark
run: |
cargo make ci-bench -- --save-baseline current
- name: Copy results from AWS S3 bucket
run: |
BRANCH_NAME=$(echo ${{ github.head_ref || github.ref_name }} | sed 's/[^a-zA-Z0-9]/-/g')
@ -140,7 +140,7 @@ jobs:
# Install FoundationDB if needed
- name: Setup FoundationDB
uses: foundationdb-rs/foundationdb-actions-install@v2.1.0
uses: foundationdb-rs/foundationdb-actions-install@v.2.2.0
if: ${{ matrix.target == 'lib-fdb' || matrix.target == 'sdk-fdb' }}
with:
version: "7.1.30"
@ -150,7 +150,7 @@ jobs:
if: ${{ matrix.target == 'sdk-ws' }}
run: |
cargo make build
# Kill any potential previous instance of the server. The runner may be reused.
pkill -9 surreal || true
./target/release/surreal start 2>&1 >surrealdb.log &
@ -179,7 +179,7 @@ jobs:
# Kill surreal server if it's running
pkill -9 surreal || true
- name: Copy results from AWS S3 bucket
run: |
BRANCH_NAME=$(echo ${{ github.head_ref || github.ref_name }} | sed 's/[^a-zA-Z0-9]/-/g')

View file

@ -307,7 +307,7 @@ jobs:
test:
name: Test workspace
runs-on: [ "self-hosted", "arm64", "builder" ]
runs-on: ["self-hosted", "arm64", "builder"]
steps:
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
@ -611,7 +611,7 @@ jobs:
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Setup FoundationDB
uses: foundationdb-rs/foundationdb-actions-install@v2.1.0
uses: foundationdb-rs/foundationdb-actions-install@v.2.2.0
with:
version: "7.1.30"
@ -666,7 +666,6 @@ jobs:
name: Database Upgrade from previous versions
runs-on: ubuntu-latest
steps:
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
with: