diff --git a/.github/workflows/deploy-config.yml b/.github/workflows/deploy-config.yml index c35249846a6..ebb607c5417 100644 --- a/.github/workflows/deploy-config.yml +++ b/.github/workflows/deploy-config.yml @@ -34,10 +34,10 @@ jobs: with: # This makes Actions fetch all Git history so run-changed script can diff properly. fetch-depth: 0 - - name: Set up node (16) + - name: Set up node (18) uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 18.x - name: Yarn install run: yarn - name: Deploy project config if needed diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index a0853b1209f..bf352aadec7 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -36,10 +36,10 @@ jobs: steps: - name: Checkout Repo uses: actions/checkout@master - - name: Set up Node (16) + - name: Set up Node (18) uses: actions/setup-node@master with: - node-version: 16.x + node-version: 18.x - name: install Chrome stable run: | sudo apt-get update @@ -60,7 +60,7 @@ jobs: pushd functions npm install popd - npx firebase-tools deploy --only functions:callTest --project jscore-sandbox-141b5 --token $FIREBASE_CLI_TOKEN + npx firebase-tools@12.9.1 deploy --only functions:callTest --project jscore-sandbox-141b5 --token $FIREBASE_CLI_TOKEN working-directory: ./config env: FIREBASE_CLI_TOKEN: ${{ secrets.FIREBASE_CLI_TOKEN }}