Skip to content

Commit dee52b3

Browse files
authored
Merge pull request #1280 from buildkite/tessereth/agent-release/3.62.0
Bump agent version to v3.62.0
2 parents 42f26a8 + ceb05b3 commit dee52b3

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,8 @@ AGENT_VERSION ?= $(shell curl -Lfs "https://buildkite.com/agent/releases/latest?
235235

236236
SED ?= sed
237237
ifeq ($(shell uname), Darwin)
238+
# Use GNU sed, not MacOS sed
239+
# Install with: brew install gsed
238240
SED = gsed
239241
endif
240242

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ sudo mkdir -p /var/lib/buildkite-agent/.aws
1515
sudo cp /tmp/conf/aws/config /var/lib/buildkite-agent/.aws/config
1616
sudo chown -R buildkite-agent:buildkite-agent /var/lib/buildkite-agent/.aws
1717

18-
AGENT_VERSION=3.61.0
18+
AGENT_VERSION=3.62.0
1919
echo "Downloading buildkite-agent v${AGENT_VERSION} stable..."
2020
sudo curl -Lsf -o /usr/bin/buildkite-agent-stable \
2121
"https://download.buildkite.com/agent/stable/${AGENT_VERSION}/buildkite-agent-linux-${ARCH}"

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

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

4-
$AGENT_VERSION = "3.61.0"
4+
$AGENT_VERSION = "3.62.0"
55

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

0 commit comments

Comments
 (0)