From 0c3f068f804a5941eee13b658b9f141045f1344c Mon Sep 17 00:00:00 2001 From: Kyle Brennan Date: Fri, 5 Dec 2025 16:29:12 +0000 Subject: [PATCH] Update dev-environment image to main-gha.34181 Updates GitHub Actions workflows and Dockerfiles to use the latest dev-environment image version. Co-authored-by: Ona --- .github/actions/delete-preview/Dockerfile | 2 +- .github/actions/deploy-gitpod/Dockerfile | 2 +- .github/actions/deploy-monitoring-satellite/Dockerfile | 2 +- .github/actions/preview-create/Dockerfile | 2 +- .github/workflows/branch-build.yml | 6 +++--- .github/workflows/build.yml | 6 +++--- .github/workflows/code-nightly.yml | 2 +- .github/workflows/ide-integration-tests.yml | 4 ++-- .github/workflows/jetbrains-auto-update-template.yml | 2 +- .github/workflows/jetbrains-integration-test.yml | 2 +- .github/workflows/preview-env-check-regressions.yml | 2 +- .github/workflows/preview-env-gc.yml | 2 +- .github/workflows/workspace-integration-tests.yml | 4 ++-- .gitpod.yml | 2 +- 14 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/actions/delete-preview/Dockerfile b/.github/actions/delete-preview/Dockerfile index 84767865d05b23..bb3ccc9e7d0f3f 100644 --- a/.github/actions/delete-preview/Dockerfile +++ b/.github/actions/delete-preview/Dockerfile @@ -1,4 +1,4 @@ -FROM eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.33389 +FROM eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.34181 COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] diff --git a/.github/actions/deploy-gitpod/Dockerfile b/.github/actions/deploy-gitpod/Dockerfile index 84767865d05b23..bb3ccc9e7d0f3f 100644 --- a/.github/actions/deploy-gitpod/Dockerfile +++ b/.github/actions/deploy-gitpod/Dockerfile @@ -1,4 +1,4 @@ -FROM eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.33389 +FROM eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.34181 COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] diff --git a/.github/actions/deploy-monitoring-satellite/Dockerfile b/.github/actions/deploy-monitoring-satellite/Dockerfile index 84767865d05b23..bb3ccc9e7d0f3f 100644 --- a/.github/actions/deploy-monitoring-satellite/Dockerfile +++ b/.github/actions/deploy-monitoring-satellite/Dockerfile @@ -1,4 +1,4 @@ -FROM eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.33389 +FROM eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.34181 COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] diff --git a/.github/actions/preview-create/Dockerfile b/.github/actions/preview-create/Dockerfile index 84767865d05b23..bb3ccc9e7d0f3f 100644 --- a/.github/actions/preview-create/Dockerfile +++ b/.github/actions/preview-create/Dockerfile @@ -1,4 +1,4 @@ -FROM eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.33389 +FROM eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.34181 COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] diff --git a/.github/workflows/branch-build.yml b/.github/workflows/branch-build.yml index b6ca5cc9230b38..cb13689657f555 100644 --- a/.github/workflows/branch-build.yml +++ b/.github/workflows/branch-build.yml @@ -106,7 +106,7 @@ jobs: cancel-in-progress: ${{ needs.configuration.outputs.is_main_branch == 'false' }} runs-on: ubuntu-latest-16-cores container: - image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.33389 + image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.34181 options: --user root steps: - uses: actions/checkout@v4 @@ -179,7 +179,7 @@ jobs: ports: - 6379:6379 container: - image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.33389 + image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.34181 options: --user root env: DB_HOST: "mysql" @@ -515,7 +515,7 @@ jobs: environment: branch-build runs-on: ubuntu-latest container: - image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.33389 + image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.34181 options: --user root if: needs.configuration.outputs.with_integration_tests != '' && needs.configuration.outputs.is_scheduled_run != 'true' concurrency: diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 43790b997476b6..20a90e3c5828a6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -110,7 +110,7 @@ jobs: cancel-in-progress: ${{ needs.configuration.outputs.is_main_branch == 'false' }} runs-on: ubuntu-latest-16-cores container: - image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.33389 + image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.34181 options: --user root steps: - uses: actions/checkout@v4 @@ -183,7 +183,7 @@ jobs: ports: - 6379:6379 container: - image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.33389 + image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.34181 options: --user root env: DB_HOST: "mysql" @@ -519,7 +519,7 @@ jobs: environment: main-build runs-on: ubuntu-latest container: - image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.33389 + image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.34181 options: --user root if: needs.configuration.outputs.with_integration_tests != '' && needs.configuration.outputs.is_scheduled_run != 'true' concurrency: diff --git a/.github/workflows/code-nightly.yml b/.github/workflows/code-nightly.yml index 2c5df395b0a94e..064d1aa6dc6ca2 100644 --- a/.github/workflows/code-nightly.yml +++ b/.github/workflows/code-nightly.yml @@ -11,7 +11,7 @@ jobs: build: runs-on: ubuntu-latest container: - image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.33389 + image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.34181 options: --user root steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/ide-integration-tests.yml b/.github/workflows/ide-integration-tests.yml index 62cf953f757581..97d80aca45224e 100644 --- a/.github/workflows/ide-integration-tests.yml +++ b/.github/workflows/ide-integration-tests.yml @@ -36,7 +36,7 @@ jobs: name: Configuration runs-on: ubuntu-latest container: - image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.33389 + image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.34181 options: --user root outputs: name: ${{ steps.configuration.outputs.name }} @@ -125,7 +125,7 @@ jobs: needs: [configuration, infrastructure] runs-on: ubuntu-latest container: - image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.33389 + image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.34181 options: --user root volumes: - /var/tmp:/var/tmp diff --git a/.github/workflows/jetbrains-auto-update-template.yml b/.github/workflows/jetbrains-auto-update-template.yml index fc74dd1e31aa71..d29cd08266bf7d 100644 --- a/.github/workflows/jetbrains-auto-update-template.yml +++ b/.github/workflows/jetbrains-auto-update-template.yml @@ -15,7 +15,7 @@ jobs: update-jetbrains: runs-on: ubuntu-latest container: - image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.33389 + image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.34181 options: --user root steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/jetbrains-integration-test.yml b/.github/workflows/jetbrains-integration-test.yml index 0195b0fc5d28ae..f8dce4376ba57b 100644 --- a/.github/workflows/jetbrains-integration-test.yml +++ b/.github/workflows/jetbrains-integration-test.yml @@ -34,7 +34,7 @@ on: jobs: jetbrains-smoke-test-linux: container: - image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.33389 + image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.34181 options: --user root runs-on: ubuntu-latest steps: diff --git a/.github/workflows/preview-env-check-regressions.yml b/.github/workflows/preview-env-check-regressions.yml index d4cd436627fe1a..adbd902ac7e90d 100644 --- a/.github/workflows/preview-env-check-regressions.yml +++ b/.github/workflows/preview-env-check-regressions.yml @@ -92,7 +92,7 @@ jobs: if: ${{ needs.configuration.outputs.skip == 'false' }} runs-on: ubuntu-latest container: - image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.33389 + image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.34181 options: --user root volumes: - /var/tmp:/var/tmp diff --git a/.github/workflows/preview-env-gc.yml b/.github/workflows/preview-env-gc.yml index 0df4a821365e2b..0645b719be86b7 100644 --- a/.github/workflows/preview-env-gc.yml +++ b/.github/workflows/preview-env-gc.yml @@ -11,7 +11,7 @@ jobs: name: "Find stale preview environments" runs-on: ubuntu-latest container: - image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.33389 + image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.34181 options: --user root outputs: names: ${{ steps.set-matrix.outputs.names }} diff --git a/.github/workflows/workspace-integration-tests.yml b/.github/workflows/workspace-integration-tests.yml index b59ab6be21633a..340dfb271b78cb 100644 --- a/.github/workflows/workspace-integration-tests.yml +++ b/.github/workflows/workspace-integration-tests.yml @@ -52,7 +52,7 @@ jobs: name: Configuration runs-on: ubuntu-latest container: - image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.33389 + image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.34181 options: --user root outputs: name: ${{ steps.configuration.outputs.name }} @@ -158,7 +158,7 @@ jobs: needs: [configuration, infrastructure] runs-on: ubuntu-latest container: - image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.33389 + image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.34181 options: --user root steps: - uses: actions/checkout@v4 diff --git a/.gitpod.yml b/.gitpod.yml index 27d3c04d46a2e5..565189aa16679c 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,4 +1,4 @@ -image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.33389 +image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:main-gha.34181 workspaceLocation: gitpod/gitpod-ws.code-workspace checkoutLocation: gitpod ports: