Skip to content

Commit e4dd982

Browse files
committed
Update Ubuntu version on GitHub Workflow
1 parent 4e54452 commit e4dd982

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build_and_test_full.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ env:
99
MLM_LICENSE_TOKEN: ${{ secrets.MLM_LICENSE_TOKEN }}
1010
jobs:
1111
get_version:
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-22.04
1313
outputs:
1414
version: ${{ steps.getversion.outputs.latest_tag }}
1515
steps:
@@ -27,7 +27,7 @@ jobs:
2727
build-and-run-tests-ubuntu:
2828
# Running on ubuntu-latest would use a glibc version that is incompatible when using the built mex files on a Debian 11
2929
# Instead, run on ubuntu-20.04
30-
runs-on: ubuntu-20.04
30+
runs-on: ubuntu-22.04
3131
needs: get_version
3232
env:
3333
OPENTELEMETRY_MATLAB_INSTALL: "${{ github.workspace }}/otel_matlab_install"
@@ -59,7 +59,7 @@ jobs:
5959
code-coverage-build-and-run-tests-ubuntu:
6060
# Running on ubuntu-latest would use a glibc version that is incompatible when using the built mex files on a Debian 11
6161
# Instead, run on ubuntu-20.04
62-
runs-on: ubuntu-20.04
62+
runs-on: ubuntu-22.04
6363
needs: get_version
6464
env:
6565
OPENTELEMETRY_MATLAB_INSTALL: "${{ github.workspace }}/otel_matlab_install"

.github/workflows/build_and_test_simple.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
MLM_LICENSE_TOKEN: ${{ secrets.MLM_LICENSE_TOKEN }}
1111
jobs:
1212
get_version:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-22.04
1414
outputs:
1515
version: ${{ steps.getversion.outputs.latest_tag }}
1616
steps:
@@ -28,7 +28,7 @@ jobs:
2828
build-and-run-tests-ubuntu:
2929
# Running on ubuntu-latest would use a glibc version that is incompatible when using the built mex files on a Debian 11
3030
# Instead, run on ubuntu-20.04
31-
runs-on: ubuntu-20.04
31+
runs-on: ubuntu-22.04
3232
needs: get_version
3333
env:
3434
OPENTELEMETRY_MATLAB_INSTALL: "${{ github.workspace }}/otel_matlab_install"

.github/workflows/create_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build-ubuntu:
88
# Running on ubuntu-latest would use a glibc version that is incompatible when using the built mex files on a Debian 11
99
# Instead, run on ubuntu-20.04
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-22.04
1111
env:
1212
OPENTELEMETRY_MATLAB_INSTALL: "${{ github.workspace }}/otel_matlab_install"
1313
steps:
@@ -97,7 +97,7 @@ jobs:
9797
path: ${{ github.workspace }}/otel-matlab-${{ matrix.os }}.tar.gz
9898
package-mltbx:
9999
name: Package MATLAB Toolbox (MLTBX) Files
100-
runs-on: ubuntu-20.04
100+
runs-on: ubuntu-22.04
101101
permissions:
102102
contents: write
103103
needs:

0 commit comments

Comments
 (0)