Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/curio-devnet-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ jobs:
# - date+sha, e.g. 2023-01-19-da4692d,
- name: Docker Meta
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ghcr.io/chainsafe/curio-devnet
tags: |
type=raw,value={{date 'YYYY-MM-DD'}}-{{sha}}
type=raw,value=latest,enable={{is_default_branch}}

- name: Build image and push to GitHub Container Registry
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
build-args: |
LOTUS_IMAGE=ghcr.io/chainsafe/lotus-devnet:2024-10-10-600728e
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
ref: ${{ inputs.git_ref }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Login to Github Packages
uses: docker/login-action@v4
Expand All @@ -34,7 +34,7 @@ jobs:

- name: Docker Meta fat for PRs only
id: metafat
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ghcr.io/chainsafe/forest
flavor: |
Expand All @@ -43,7 +43,7 @@ jobs:
type=raw,value={{date 'YYYY-MM-DD'}}-{{sha}}-fat

- name: Build fat image and push to GitHub Container Registry
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
file: ./Dockerfile
tags: ${{ steps.metafat.outputs.tags }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-latest-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Re-tag image and push to GHCR
if: ${{ !fromJSON(github.event.inputs.dry_run) }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
path: /tmp/forest/forest-linux-arm64

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Login to Github Packages
uses: docker/login-action@v4
Expand All @@ -169,7 +169,7 @@ jobs:
# - tag-fat (if pushed).
- name: Docker Meta fat
id: metafat
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ghcr.io/chainsafe/forest
flavor: |
Expand All @@ -181,7 +181,7 @@ jobs:
type=edge

- name: Build fat image and push to GitHub Container Registry
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: /tmp/forest
file: ./Dockerfile-ci
Expand All @@ -197,7 +197,7 @@ jobs:
# - tag (if pushed).
- name: Docker Meta
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ghcr.io/chainsafe/forest
flavor: |
Expand All @@ -208,7 +208,7 @@ jobs:
type=edge

- name: Build slim image and push to GitHub Container Registry
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: /tmp/forest
file: ./Dockerfile-ci
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lotus-devnet-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ jobs:
# - date+sha, e.g. 2023-01-19-da4692d,
- name: Docker Meta
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ghcr.io/chainsafe/lotus-devnet
tags: |
type=raw,value={{date 'YYYY-MM-DD'}}-{{sha}}
type=raw,value=latest,enable={{is_default_branch}}

- name: Build image and push to GitHub Container Registry
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
file: ./scripts/devnet/lotus.dockerfile
context: ./scripts/devnet
Expand Down
Loading