Skip to content

Commit

Permalink
Revert "chore(deps): pin dependencies"
Browse files Browse the repository at this point in the history
This reverts commit dcce6ea.
  • Loading branch information
NextFire committed Feb 25, 2024
1 parent dcce6ea commit 2110d1c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ jobs:
platform: linux/arm64

steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Docker Metadata
id: meta
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5
uses: docker/metadata-action@v5
with:
images: |
${{ env.IMAGE_NAME }}
Expand All @@ -53,7 +53,7 @@ jobs:
- name: Build image
id: build-image
uses: redhat-actions/buildah-build@b4dc19b4ba891854660ab1f88a097d45aa158f76 # v2
uses: redhat-actions/buildah-build@v2
with:
platforms: ${{ matrix.config.platform }}
image: ${{ env.IMAGE_NAME }}
Expand All @@ -64,7 +64,7 @@ jobs:

- name: Push image
id: push-image
uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build-image.outputs.image }}
tags: ${{ steps.build-image.outputs.tags }}
Expand All @@ -85,10 +85,10 @@ jobs:
id-token: write

steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/checkout@v4

- name: Podman login
uses: redhat-actions/podman-login@9184318aae1ee5034fbfbacc0388acf12669171f # v1
uses: redhat-actions/podman-login@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand Down
4 changes: 2 additions & 2 deletions Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/odrling/chimera:x86_64@sha256:41b1908517a31791616a7a5d6b89351d227331816ad5bbd2755ace75f40d9cee AS builder
FROM ghcr.io/odrling/chimera:x86_64 AS builder
ARG ARCH

RUN apk add base-devel-static meson clang git lld
Expand All @@ -7,7 +7,7 @@ COPY . /dakara_check

RUN cd /dakara_check && /dakara_check/ci/build.sh

FROM ghcr.io/odrling/chimera@sha256:26016bae5fc810a109cbadc449be1926594a5819223348dc9a41af20c30dc3c6
FROM ghcr.io/odrling/chimera

COPY --from=builder /dakara_check/dest/ /
ENTRYPOINT ["/usr/local/bin/dakara_check"]
Expand Down

0 comments on commit 2110d1c

Please sign in to comment.