From 19e2f626033014c0e8d4bdc02e14a3b3d9fe85d3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Jun 2024 03:25:27 +0300 Subject: [PATCH] =?UTF-8?q?=E2=9A=92=EF=B8=8F=20build(deps):=20Bump=20dock?= =?UTF-8?q?er/build-push-action=20from=205=20to=206=20(#86)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5 to 6.
Release notes

Sourced from docker/build-push-action's releases.

v6.0.0

[!NOTE] This major release adds support for generating Build summary and exporting build record for your build. You can disable this feature by setting DOCKER_BUILD_NO_SUMMARY: true environment variable in your workflow.

Full Changelog: https://github.com/docker/build-push-action/compare/v5.4.0...v6.0.0

v5.4.0

Full Changelog: https://github.com/docker/build-push-action/compare/v5.3.0...v5.4.0

v5.3.0

Full Changelog: https://github.com/docker/build-push-action/compare/v5.2.0...v5.3.0

v5.2.0

Full Changelog: https://github.com/docker/build-push-action/compare/v5.1.0...v5.2.0

v5.1.0

Full Changelog: https://github.com/docker/build-push-action/compare/v5.0.0...v5.1.0

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=docker/build-push-action&package-manager=github_actions&previous-version=5&new-version=6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
--------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Wanjohi <71614375+wanjohiryan@users.noreply.github.com> --- .github/workflows/base.yml | 6 +++--- .github/workflows/relay.yml | 6 +++--- .github/workflows/server.yml | 6 +++--- .github/workflows/warp-input.yml | 6 +++--- .github/workflows/warp.yml | 6 +++--- base.Dockerfile | 2 ++ 6 files changed, 17 insertions(+), 15 deletions(-) diff --git a/.github/workflows/base.yml b/.github/workflows/base.yml index 472907d2..49c9334d 100644 --- a/.github/workflows/base.yml +++ b/.github/workflows/base.yml @@ -42,7 +42,7 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Build Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: file: base.Dockerfile context: ./ @@ -84,7 +84,7 @@ jobs: type=semver,pattern={{major}} - name: Build Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: file: base.Dockerfile context: ./ @@ -126,7 +126,7 @@ jobs: type=semver,pattern={{major}} - name: Build Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: file: base.Dockerfile context: ./ diff --git a/.github/workflows/relay.yml b/.github/workflows/relay.yml index beb9c0b0..72502a47 100644 --- a/.github/workflows/relay.yml +++ b/.github/workflows/relay.yml @@ -42,7 +42,7 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Build Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: file: relay.Dockerfile context: ./ @@ -84,7 +84,7 @@ jobs: type=semver,pattern={{major}} - name: Build Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: file: relay.Dockerfile context: ./ @@ -126,7 +126,7 @@ jobs: type=semver,pattern={{major}} - name: Build Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: file: relay.Dockerfile context: ./ diff --git a/.github/workflows/server.yml b/.github/workflows/server.yml index 03df7aaf..f81b23b9 100644 --- a/.github/workflows/server.yml +++ b/.github/workflows/server.yml @@ -44,7 +44,7 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Build Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: file: server.Dockerfile context: ./ @@ -86,7 +86,7 @@ jobs: type=semver,pattern={{major}} - name: Build Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: file: server.Dockerfile context: ./ @@ -128,7 +128,7 @@ jobs: type=semver,pattern={{major}} - name: Build Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: file: server.Dockerfile context: ./ diff --git a/.github/workflows/warp-input.yml b/.github/workflows/warp-input.yml index 2ea94d98..2edbaf4d 100644 --- a/.github/workflows/warp-input.yml +++ b/.github/workflows/warp-input.yml @@ -47,7 +47,7 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Build Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: file: warp-input.Dockerfile context: ./ @@ -91,7 +91,7 @@ jobs: type=semver,pattern={{major}} - name: Build Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: file: warp-input.Dockerfile context: ./ @@ -135,7 +135,7 @@ jobs: type=semver,pattern={{major}} - name: Build Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: file: warp-input.Dockerfile context: ./ diff --git a/.github/workflows/warp.yml b/.github/workflows/warp.yml index 513344fe..eef598fb 100644 --- a/.github/workflows/warp.yml +++ b/.github/workflows/warp.yml @@ -45,7 +45,7 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Build Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: file: warp.Dockerfile context: ./ @@ -89,7 +89,7 @@ jobs: type=semver,pattern={{major}} - name: Build Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: file: warp.Dockerfile context: ./ @@ -133,7 +133,7 @@ jobs: type=semver,pattern={{major}} - name: Build Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: file: warp.Dockerfile context: ./ diff --git a/base.Dockerfile b/base.Dockerfile index e1c16c0e..eeec1420 100644 --- a/base.Dockerfile +++ b/base.Dockerfile @@ -233,6 +233,8 @@ RUN apt-get update -y \ libxcomposite-dev \ libkpipewire-dev \ libxrandr-dev \ + libxi-dev \ + libxdamage-dev \ libxfixes-dev \ libpulse-dev \ libswresample-dev \