Skip to content

Commit ec3b45e

Browse files
committed
Update sysbox to 0.7.0
1 parent a1fd201 commit ec3b45e

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/release.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ jobs:
3131
include:
3232
- os: ubuntu-22.04
3333
arch: linux/amd64
34-
sha: b7ac389e5a19592cadf16e0ca30e40919516128f6e1b7f99e1cb4ff64554172e
34+
sha: eeff273671467b8fa351ab3d40709759462dc03d9f7b50a1b207b37982ce40a9
3535
arch-suffix: amd64
3636
- os: depot-ubuntu-22.04-arm
3737
arch: linux/arm64
38-
sha: 16d80123ba53058cf90f5a68686e297621ea97942602682e34b3352783908f91
38+
sha: eae9c0e91ddd39bd1826d6a7a313a73d42a8449ef5113e9d6d118b559cb809ba
3939
arch-suffix: arm64
4040
runs-on: ${{ matrix.os }}
4141
steps:
@@ -79,10 +79,10 @@ jobs:
7979
run: make -j ARCH=${{ matrix.arch }} SYSBOX_SHA=${{ matrix.sha }} build/image/envbox
8080

8181
- name: Tag Image
82-
run: docker tag envbox ghcr.io/coder/envbox:${{ github.event.inputs.version }}-${{ matrix.arch-suffix }}
82+
run: docker tag envbox ghcr.io/${{ github.repository_owner }}/envbox:${{ github.event.inputs.version }}-${{ matrix.arch-suffix }}
8383

8484
- name: Push Image
85-
run: docker push ghcr.io/coder/envbox:${{ github.event.inputs.version }}-${{ matrix.arch-suffix }}
85+
run: docker push ghcr.io/${{ github.repository_owner }}/envbox:${{ github.event.inputs.version }}-${{ matrix.arch-suffix }}
8686
manifest:
8787
runs-on: ubuntu-22.04
8888
needs: release
@@ -100,12 +100,12 @@ jobs:
100100
password: ${{ secrets.GITHUB_TOKEN }}
101101
- name: Create Manifest
102102
run: |
103-
docker manifest create ghcr.io/coder/envbox:${{ github.event.inputs.version }} \
104-
--amend ghcr.io/coder/envbox:${{ github.event.inputs.version }}-amd64 \
105-
--amend ghcr.io/coder/envbox:${{ github.event.inputs.version }}-arm64
103+
docker manifest create ghcr.io/${{ github.repository_owner }}/envbox:${{ github.event.inputs.version }} \
104+
--amend ghcr.io/${{ github.repository_owner }}/envbox:${{ github.event.inputs.version }}-amd64 \
105+
--amend ghcr.io/${{ github.repository_owner }}/envbox:${{ github.event.inputs.version }}-arm64
106106
- name: Push Manifest
107107
run: |
108-
docker manifest push ghcr.io/coder/envbox:${{ github.event.inputs.version }}
108+
docker manifest push ghcr.io/${{ github.repository_owner }}/envbox:${{ github.event.inputs.version }}
109109
110110
tag:
111111
runs-on: ubuntu-22.04

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PROJECT_ROOT := $(shell git rev-parse --show-toplevel)
22
GO_FILES := $(shell git ls-files '*.go' '*.sum')
33
IMAGE_FILES := $(shell find deploy)
44
ARCH ?= linux/amd64
5-
SYSBOX_SHA ?= b7ac389e5a19592cadf16e0ca30e40919516128f6e1b7f99e1cb4ff64554172e
5+
SYSBOX_SHA ?= eeff273671467b8fa351ab3d40709759462dc03d9f7b50a1b207b37982ce40a9
66

77
.PHONY: clean
88
clean:

deploy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ARG TARGETARCH
66
# We don't hardcode it here because we have to be able to build both
77
# amd and arm
88
ARG SYSBOX_SHA
9-
ARG SYSBOX_VERSION="0.6.7"
9+
ARG SYSBOX_VERSION="0.7.0"
1010
ARG SYSBOX_DEB="sysbox-ce_$SYSBOX_VERSION-0.linux_$TARGETARCH.deb"
1111

1212
# Copy configuration files to appropriate locations

0 commit comments

Comments
 (0)