Skip to content

Commit 11b8abb

Browse files
committed
Merge remote-tracking branch 'upstream/main' into mattrunyon_dh-19000
2 parents 45cf06a + 334829d commit 11b8abb

28 files changed

Lines changed: 1471 additions & 75 deletions

.github/workflows/build-python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919

2020
jobs:
2121
build-python-package:
22-
runs-on: ubuntu-22.04
22+
runs-on: ubuntu-24.04
2323
steps:
2424
- name: Checkout
2525
uses: actions/checkout@v4

.github/workflows/conventional-pr-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
pr-check:
12-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-24.04
1313
steps:
1414
- uses: amannn/action-semantic-pull-request@v5
1515
id: lint_pr_title

.github/workflows/e2e.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
e2e-test:
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-24.04
1616
concurrency:
1717
group: ${{ github.workflow }}-${{ github.ref }}
1818
cancel-in-progress: true
@@ -21,7 +21,7 @@ jobs:
2121
uses: actions/checkout@v4
2222

2323
- name: Run tests
24-
run: "./tools/run_docker.sh e2e-tests"
24+
run: './tools/run_docker.sh e2e-tests'
2525

2626
- name: Upload Playwright report
2727
uses: actions/upload-artifact@v4
@@ -34,10 +34,10 @@ jobs:
3434
- name: Dump server logs
3535
if: failure()
3636
run: docker logs deephaven-plugins > /tmp/server-log.txt
37-
37+
3838
- name: Upload server logs
3939
if: failure()
4040
uses: actions/upload-artifact@v4
4141
with:
4242
name: server-logs
43-
path: /tmp/server-log.txt
43+
path: /tmp/server-log.txt

.github/workflows/modified-plugin.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919

2020
jobs:
2121
changes:
22-
runs-on: ubuntu-22.04
22+
runs-on: ubuntu-24.04
2323
permissions:
2424
pull-requests: read
2525
outputs:
@@ -55,7 +55,7 @@ jobs:
5555
# https://github.com/orgs/community/discussions/26822#discussioncomment-5122101
5656
test-results:
5757
if: ${{ always() }}
58-
runs-on: ubuntu-22.04
58+
runs-on: ubuntu-24.04
5959
needs: [test-python, test-js, build-docs]
6060
steps:
6161
# Only fail if one of the previous tests failed
@@ -64,7 +64,7 @@ jobs:
6464

6565
filter-release:
6666
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
67-
runs-on: ubuntu-22.04
67+
runs-on: ubuntu-24.04
6868
steps:
6969
- name: Filter tag
7070
id: filter-tag

.github/workflows/publish-alpha.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
default: ''
1313
jobs:
1414
publish-alpha:
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-24.04
1616
permissions:
1717
contents: read
1818
packages: write

.github/workflows/publish-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
types: [created]
66
jobs:
77
publish-packages:
8-
runs-on: ubuntu-22.04
8+
runs-on: ubuntu-24.04
99
permissions:
1010
contents: read
1111
packages: write

.github/workflows/release-python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
release:
2424
needs: build-plugin
25-
runs-on: ubuntu-22.04
25+
runs-on: ubuntu-24.04
2626
permissions:
2727
id-token: write
2828
outputs:
@@ -60,7 +60,7 @@ jobs:
6060
attestations: false # TODO: Followup this thread to see if there's a better fix https://github.com/pypa/gh-action-pypi-publish/issues/283
6161

6262
check-make-docs:
63-
runs-on: ubuntu-22.04
63+
runs-on: ubuntu-24.04
6464
outputs:
6565
files_exists: ${{ steps.check_files.outputs.files_exists }}
6666
steps:

.github/workflows/request-docs-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: github.event.pull_request.draft == false
1717
permissions:
1818
pull-requests: write
19-
runs-on: ubuntu-22.04
19+
runs-on: ubuntu-24.04
2020

2121
steps:
2222
- name: Add docs reviewers

.github/workflows/test-js-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_call:
88
jobs:
99
unit:
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1111
concurrency:
1212
group: ${{ github.workflow }}-${{ github.ref }}
1313
cancel-in-progress: true

.github/workflows/test-python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
test:
12-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-24.04
1313
strategy:
1414
fail-fast: false
1515
matrix:

0 commit comments

Comments
 (0)