diff options
author | eitsupi <50911393+eitsupi@users.noreply.github.com> | 2023-08-29 19:32:46 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-29 19:32:46 +0300 |
commit | 038bed3d58a84885da8a008b80905da17d57a543 (patch) | |
tree | 1221caf74d8cf09db8d93726d57efdcc8584524a | |
parent | 96bff0097028001e6e4126c5528d37cb8c13e785 (diff) |
ci: remove `ubuntu:bionic` from test matrixes (#677)
ci: remove ubuntu:bionic from test matrixes
-rw-r--r-- | .github/workflows/test-all.yaml | 3 | ||||
-rw-r--r-- | .github/workflows/test-pr.yaml | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/test-all.yaml b/.github/workflows/test-all.yaml index 8dc206d..40f5efa 100644 --- a/.github/workflows/test-all.yaml +++ b/.github/workflows/test-all.yaml @@ -42,7 +42,6 @@ jobs: ] baseImage: [ - "ubuntu:bionic", "ubuntu:focal", "ubuntu:jammy", "debian:11", @@ -112,4 +111,4 @@ jobs: run: npm install -g @devcontainers/cli - name: "Testing global scenarios" - run: devcontainer features test --global-scenarios-only .
\ No newline at end of file + run: devcontainer features test --global-scenarios-only . diff --git a/.github/workflows/test-pr.yaml b/.github/workflows/test-pr.yaml index 6b91b61..d607335 100644 --- a/.github/workflows/test-pr.yaml +++ b/.github/workflows/test-pr.yaml @@ -49,7 +49,6 @@ jobs: features: ${{ fromJSON(needs.detect-changes.outputs.features) }} baseImage: [ - "ubuntu:bionic", "ubuntu:focal", "ubuntu:jammy", "debian:11", @@ -80,4 +79,4 @@ jobs: run: npm install -g @devcontainers/cli - name: "Testing '${{ matrix.features }}' scenarios" - run: devcontainer features test -f ${{ matrix.features }} --skip-autogenerated .
\ No newline at end of file + run: devcontainer features test -f ${{ matrix.features }} --skip-autogenerated . |