Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: planetscale/ghcommit-action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.2.1
Choose a base ref
...
head repository: planetscale/ghcommit-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.2.2
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on Jan 13, 2025

  1. fix arm64 ghcommit-action docker images

    joemiller committed Jan 13, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    c63d0fc View commit details
  2. Merge pull request #89 from planetscale/joem/fix-multi-arch-build

    fix arm64 ghcommit-action docker images
    joemiller authored Jan 13, 2025
    Copy the full SHA
    b18b858 View commit details
  3. Copy the full SHA
    e35ab66 View commit details
Showing with 5 additions and 5 deletions.
  1. +1 −1 Dockerfile
  2. +2 −2 Dockerfile.base
  3. +2 −2 renovate.json
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM ghcr.io/planetscale/ghcommit-action:v0.2.1
FROM ghcr.io/planetscale/ghcommit-action:v0.2.2
4 changes: 2 additions & 2 deletions Dockerfile.base
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ghcr.io/planetscale/ghcommit:v0.1.55@sha256:1e619715b0b8b4f80571ae0c1afaebc2329f5eb5514c878303dbe43ce0944563 AS ghcommit
FROM --platform=$TARGETARCH ghcr.io/planetscale/ghcommit:v0.1.56 AS ghcommit

# hadolint ignore=DL3007
FROM pscale.dev/wolfi-prod/base:latest AS base
FROM --platform=$TARGETARCH pscale.dev/wolfi-prod/base:latest AS base

COPY --from=ghcommit /ghcommit /usr/bin/ghcommit

4 changes: 2 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -9,9 +9,9 @@
],
"packageRules": [
{
"description": "Don't pin base image, we do not want its weekly updates.",
"matchPackageNames": [
"pscale.dev/wolfi-prod/base"
"pscale.dev/wolfi-prod/base",
"ghcr.io/planetscale/ghcommit"
],
"pinDigests": false
}