Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dependencies #126

Merged
merged 1 commit into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@ jobs:

- name: Docker login
if: github.event_name != 'pull_request'
uses: docker/login-action@v3.2.0
uses: docker/login-action@v3.3.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Setup qemu
uses: docker/setup-qemu-action@v3.1.0
uses: docker/setup-qemu-action@v3.2.0
with:
platforms: arm64

- name: Setup buildx
uses: docker/setup-buildx-action@v3.4.0
uses: docker/setup-buildx-action@v3.6.1

- name: Export runtime
uses: crazy-max/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ ENV Cake_Settings_EnableScriptCache=true \
RUN <<EOF
set -ex
[ "$TARGETARCH" = "amd64" ] && arch="x86_64" || arch="aarch64"
version=27.0.3
version=27.1.1
curl -fsSL https://download.docker.com/linux/static/stable/$arch/docker-$version.tgz -o docker.tgz
tar -xzf docker.tgz --directory /usr/local/bin --no-same-owner --strip=1 docker/docker
rm -f docker.tgz
Expand All @@ -60,7 +60,7 @@ EOF
RUN <<EOF
set -ex
[ "$TARGETARCH" = "amd64" ] && arch="amd64" || arch="arm64"
version=0.16.1
version=0.16.2
curl -fsSL https://github.com/docker/buildx/releases/download/v$version/buildx-v$version.linux-$arch -o /usr/local/lib/docker/cli-plugins/docker-buildx
chmod +x /usr/local/lib/docker/cli-plugins/docker-buildx
docker buildx version
Expand All @@ -71,7 +71,7 @@ EOF
RUN <<EOF
set -ex
[ "$TARGETARCH" = "amd64" ] && arch="x86_64" || arch="aarch64"
version=2.29.0
version=2.29.1
curl -fsSL https://github.com/docker/compose/releases/download/v$version/docker-compose-linux-$arch -o /usr/local/lib/docker/cli-plugins/docker-compose
chmod +x /usr/local/lib/docker/cli-plugins/docker-compose
docker compose version
Expand Down