Skip to content

Commit da412f1

Browse files
committed
Update dependencies
1 parent 18c621a commit da412f1

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
FROM eu.gcr.io/gitpod-core-dev/dev/dev-environment:base
33

44
# leeway
5-
ARG LEEWAY_VERSION=0.7.6
5+
ARG LEEWAY_VERSION=0.7.7
66
ENV LEEWAY_MAX_PROVENANCE_BUNDLE_SIZE=8388608
77
ENV LEEWAY_CACHE_DIR=/var/tmp/cache
88
ENV LEEWAY_BUILD_DIR=/var/tmp/build
99

1010
RUN cd /usr/bin && curl -fsSL https://github.com/gitpod-io/leeway/releases/download/v${LEEWAY_VERSION}/leeway_${LEEWAY_VERSION}_Linux_x86_64.tar.gz | sudo tar xz
1111

12-
RUN cd /usr/bin && curl -fsSL https://github.com/mikefarah/yq/releases/download/v4.23.1/yq_linux_amd64 | sudo tee -a yq >/dev/null 2>&1 \
12+
RUN cd /usr/bin && curl -fsSL https://github.com/mikefarah/yq/releases/download/v4.35.1/yq_linux_amd64 | sudo tee -a yq >/dev/null 2>&1 \
1313
&& sudo chmod +x yq
1414

1515
### Google Cloud ###
@@ -18,7 +18,7 @@ ARG GCS_DIR=/opt/google-cloud-sdk
1818
ENV PATH=$GCS_DIR/bin:$PATH
1919
RUN sudo chown gitpod: /opt \
2020
&& mkdir $GCS_DIR \
21-
&& curl -fsSL https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-420.0.0-linux-x86_64.tar.gz \
21+
&& curl -fsSL https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-445.0.0-linux-x86_64.tar.gz \
2222
| tar -xzvC /opt \
2323
&& /opt/google-cloud-sdk/install.sh --quiet --usage-reporting=false --bash-completion=true \
2424
--additional-components gke-gcloud-auth-plugin docker-credential-gcr alpha beta \

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ inputs:
3535
image:
3636
description: Specifies the name of the image that the disk will be initialized with.
3737
required: false
38-
default: gh-runner-202308260014
38+
default: gh-runner-202309142340
3939
image_family:
4040
description: The image family for the operating system that the boot disk will be initialized with.
4141
required: false

vm/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ build-actions-runner-image: ## Builds a custom GCP image for github self-hos
2424
packer build -force \
2525
-var zone=europe-west1-b \
2626
-var project_id=public-github-runners \
27-
-var source_image=ubuntu-2204-jammy-v20230630 \
27+
-var source_image=ubuntu-2204-jammy-v20230908 \
2828
-var image_name=gh-runner-${BUILD_ID} \
2929
vm-image.pkr.hcl
3030

vm/rootfs/etc/preloaded-images

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
eu.gcr.io/gitpod-core-dev/dev/dev-environment:at-node-18-17-1-gha.15610
2-
eu.gcr.io/gitpod-core-dev/dev/dev-environment:aledbf-oci-tool-gha.14121
32
gitpod/workspace-full
43
mysql:5.7
4+
bitnami/mysql:8.0.33-debian-11-r24
5+
redis
56
node:16
7+
node:18
68
localstack/localstack:2.2
79
registry:2

vm/rootfs/setup-runner.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
# go
6-
GO_VERSION=1.20.6
6+
GO_VERSION=1.21.1
77
GOPATH=/home/runner/go-packages
88
GOROOT=/home/runner/go
99
PATH=$GOROOT/bin:$GOPATH/bin:$PATH

vm/setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export DEBIAN_FRONTEND=noninteractive
66

77
RUNNER_USER="runner"
88
RUNNER_DIR="/home/${RUNNER_USER}"
9-
RUNNER_VER=2.308.0
9+
RUNNER_VER=2.309.0
1010

1111
HELM_VERSION=3.12.1
1212

0 commit comments

Comments
 (0)