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