Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/pull_request.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
matrix:
node-version: ["18", "20"]
Expand All @@ -21,7 +21,7 @@ jobs:

unit-tests:
name: Unit Tests
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [lint]
strategy:
matrix:
Expand All @@ -36,7 +36,7 @@ jobs:

functional-tests:
name: Functional Tests
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [unit-tests]
strategy:
matrix:
Expand All @@ -54,7 +54,7 @@ jobs:
documentation-snippet-tests:
name: Documentation Snippet Tests
needs: [unit-tests]
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push_branches.workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
release:
name: Release process
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
permissions:
contents: write
issues: write
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
documentation_deploy:
needs: [release]
name: Documentation - Deploy
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down