Skip to content

Commit 244aac0

Browse files
committed
Update build pipeline versions
1 parent a586448 commit 244aac0

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -92,16 +92,16 @@ jobs:
9292
- name: Checkout repository
9393
uses: actions/checkout@v6
9494
- name: Set up Docker Buildx
95-
uses: docker/setup-buildx-action@v3
95+
uses: docker/setup-buildx-action@v4
9696
- name: Log in to GHCR
97-
uses: docker/login-action@v3
97+
uses: docker/login-action@v4
9898
with:
9999
registry: ghcr.io
100100
username: ${{ github.actor }}
101101
password: ${{ secrets.GITHUB_TOKEN }}
102102
- name: Build and push by digest
103103
id: build
104-
uses: docker/build-push-action@v6
104+
uses: docker/build-push-action@v7
105105
with:
106106
platforms: ${{ matrix.platform }}
107107
outputs: type=image,name=ghcr.io/${{ github.repository }},push-by-digest=true,name-canonical=true,push=true
@@ -111,7 +111,7 @@ jobs:
111111
digest="${{ steps.build.outputs.digest }}"
112112
touch "/tmp/digests/${digest#sha256:}"
113113
- name: Upload digest
114-
uses: actions/upload-artifact@v4
114+
uses: actions/upload-artifact@v7
115115
with:
116116
name: digest-${{ matrix.name }}
117117
path: /tmp/digests/*
@@ -132,24 +132,24 @@ jobs:
132132
packages: write
133133
steps:
134134
- name: Download digests
135-
uses: actions/download-artifact@v4
135+
uses: actions/download-artifact@v8
136136
with:
137137
path: /tmp/digests
138138
pattern: digest-*
139139
merge-multiple: true
140140
- name: Docker metadata
141141
id: meta
142-
uses: docker/metadata-action@v5
142+
uses: docker/metadata-action@v6
143143
with:
144144
images: ghcr.io/${{ github.repository }}
145145
tags: |
146146
type=edge,branch=main
147147
type=ref,event=pr
148148
type=raw,value=${{ needs.release-plz-release.outputs.version }},enable=${{ needs.release-plz-release.outputs.releases_created == 'true' }}
149149
- name: Set up Docker Buildx
150-
uses: docker/setup-buildx-action@v3
150+
uses: docker/setup-buildx-action@v4
151151
- name: Log in to GHCR
152-
uses: docker/login-action@v3
152+
uses: docker/login-action@v4
153153
with:
154154
registry: ghcr.io
155155
username: ${{ github.actor }}

0 commit comments

Comments
 (0)