File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ inputs:
35
35
image :
36
36
description : Specifies the name of the image that the disk will be initialized with.
37
37
required : false
38
- default : gh-runner-202310171138
38
+ default : gh-runner-202310171159
39
39
image_family :
40
40
description : The image family for the operating system that the boot disk will be initialized with.
41
41
required : false
85
85
credentials_json : ${{ inputs.gcp_credentials }}
86
86
- name : Activate GCP service account
87
87
id : gcloud-auth
88
- if : github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
88
+ if : github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
89
89
shell : bash
90
90
run : |
91
91
gcloud auth activate-service-account --key-file ${{ steps.auth.outputs.credentials_file_path }}
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ RUNNER_DIR="/home/${RUNNER_USER}"
9
9
RUNNER_VER=2.310.2
10
10
11
11
HELM_VERSION=3.12.1
12
+ PULUMI_VERSION=3.89.0
12
13
13
14
DOCKER_USER_UID=33333
14
15
DOCKER_GROUP_GID=33333
@@ -121,6 +122,10 @@ curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key --keyring /
121
122
apt-get update
122
123
apt-get install -y google-cloud-cli
123
124
125
+ echo " 📝 Installing pulumi..."
126
+ curl -fsSL https://get.pulumi.com/releases/sdk/pulumi-v${PULUMI_VERSION} -linux-x64.tar.gz | tar -xzvC /tmp/ --strip-components=1
127
+ cp /tmp/pulumi /usr/local/bin/pulumi
128
+
124
129
echo " 📝 Installing actions-runner..."
125
130
RUNNER_TGZ=/tmp/actions-runner-linux-x64-${RUNNER_VER} .tar.gz
126
131
You can’t perform that action at this time.
0 commit comments