Skip to content

Commit

Permalink
Update to packer 1.9.1 (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbast authored Jul 15, 2023
1 parent 7fb57b2 commit 07a5004
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/archlinuxarm-armv7-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Install Packer
uses: hashicorp-contrib/setup-packer@v2
with:
packer-version: 1.8.6
packer-version: 1.9.1

- name: Build image
run: sudo packer build -var docker_user=$docker_user -var docker_password=$docker_password -var docker_repository=$docker_repository boards/armv7/archlinuxarm-docker.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/archlinuxarm-armv8-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Install Packer
uses: hashicorp-contrib/setup-packer@v2
with:
packer-version: 1.8.6
packer-version: 1.9.1

- name: Build image
run: sudo packer build -var docker_user=$docker_user -var docker_password=$docker_password -var docker_repository=$docker_repository boards/armv8/archlinuxarm-docker.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
- name: Install Packer
uses: hashicorp-contrib/setup-packer@v2
with:
packer-version: 1.8.6
packer-version: 1.9.1

- name: Retrieve cache
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ COPY . .

RUN go build -o packer-builder-arm

ENV PACKER_VERSION 1.8.6
ENV PACKER_VERSION 1.9.1

RUN if [ "$(uname -m)" = "aarch64" ]; then PACKER_ARCH="arm64"; else PACKER_ARCH="amd64"; fi && \
wget https://releases.hashicorp.com/packer/${PACKER_VERSION}/packer_${PACKER_VERSION}_linux_${PACKER_ARCH}.zip -q -O /tmp/packer.zip && \
Expand Down

0 comments on commit 07a5004

Please sign in to comment.