Skip to content

Commit

Permalink
Bump github actions to use node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
ddalcino committed Mar 26, 2024
1 parent bc92da5 commit d322c55
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:

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
Expand All @@ -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
Expand Down

0 comments on commit d322c55

Please sign in to comment.