From a728db94b7ea39a15ab88e4b0a8dd1d7a085f705 Mon Sep 17 00:00:00 2001 From: Dave Dalcino Date: Mon, 25 Mar 2024 22:49:06 -0700 Subject: [PATCH] Bump github actions to use node 20 --- .github/workflows/deploy.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b4b0057..16fb193 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,18 +13,18 @@ jobs: strategy: matrix: - node-version: [16.x] + node-version: [20.x] python-version: [3.9] steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install aqtinstall - requirement for functional tests @@ -35,7 +35,7 @@ jobs: yarn run build --if-present yarn test --coverage - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 - name: deploy to gh-pages if: github.ref == 'refs/heads/main' && github.actor == github.repository_owner uses: peaceiris/actions-gh-pages@v3