Skip to content

Commit ea287b3

Browse files
author
Lachlan Donald
committed
Bump buildkite-agent to v3.11.3
1 parent f87fe41 commit ea287b3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ If you really want to store your secrets unencrypted, you can disable it entirel
108108
## What’s On Each Machine?
109109

110110
* [Amazon Linux 2 LTS](https://aws.amazon.com/amazon-linux-2/)
111-
* [Buildkite Agent v3.10.3](https://buildkite.com/docs/agent)
111+
* [Buildkite Agent v3.11.3](https://buildkite.com/docs/agent)
112112
* [Docker 18.09.1](https://www.docker.com)
113113
* [Docker Compose 1.23.2](https://docs.docker.com/compose/)
114114
* [aws-cli](https://aws.amazon.com/cli/) - useful for performing any ops-related tasks

packer/linux/scripts/install-buildkite-agent.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -eu -o pipefail
33

4-
AGENT_VERSION=3.10.3
4+
AGENT_VERSION=3.11.3
55

66
echo "Installing dependencies..."
77
sudo yum update -y -q

packer/windows/scripts/install-buildkite-agent.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Stop script execution when a non-terminating error occurs
22
$ErrorActionPreference = "Stop"
33

4-
$AGENT_VERSION = "3.10.3"
4+
$AGENT_VERSION = "3.11.3"
55

66
Write-Output "Creating bin dir..."
77
New-Item -ItemType directory -Path C:\buildkite-agent\bin
88

99
Write-Output 'Updating PATH'
1010
$env:PATH = "C:\buildkite-agent\bin;" + $env:PATH
11-
[Environment]::SetEnvironmentVariable('PATH', $env:PATH, [EnvironmentVariableTarget]::Machine)
11+
[Environment]::SetEnvironmentVariable('PATH', $env:PATH, [EnvironmentVariableTarget]::Machine)
1212

1313
Write-Output "Downloading buildkite-agent v${AGENT_VERSION} stable..."
1414
Invoke-WebRequest -OutFile C:\buildkite-agent\bin\buildkite-agent-stable.exe -Uri "https://download.buildkite.com/agent/stable/${AGENT_VERSION}/buildkite-agent-windows-amd64.exe"

0 commit comments

Comments
 (0)