Skip to content

Commit c9d6717

Browse files
committed
Update action versions and fix missing id
1 parent 2b4a755 commit c9d6717

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/BuildDockerDeeploy.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,17 +57,18 @@ jobs:
5757
haskell: true
5858
large-packages: true
5959

60-
- uses: docker/setup-buildx-action@v1
60+
- uses: docker/setup-buildx-action@v3
6161

6262
- name: GHCR Log-in
63-
uses: docker/login-action@v1
63+
uses: docker/login-action@v3
6464
with:
6565
registry: ghcr.io
6666
username: ${{ github.actor }}
6767
password: ${{ secrets.GITHUB_TOKEN }}
6868

6969
- name: Build Cache for Docker
70-
uses: actions/cache@v3
70+
id: cache
71+
uses: actions/cache@v4
7172
with:
7273
path: var-ccache
7374
key: ${{ runner.os }}-${{ matrix.platform }}-build-cache-deeploy
@@ -88,6 +89,7 @@ jobs:
8889
OWNER: '${{ github.repository_owner }}'
8990

9091
- name: Build and push final deploy image
92+
id: build
9193
uses: docker/build-push-action@v6
9294
with:
9395
platforms: linux/${{ matrix.platform }}
@@ -108,7 +110,7 @@ jobs:
108110
needs: [ prepare, build-deeploy ]
109111
steps:
110112
- name: GHCR Log-in
111-
uses: docker/login-action@v1
113+
uses: docker/login-action@v3
112114
with:
113115
registry: ghcr.io
114116
username: ${{ github.actor }}

0 commit comments

Comments
 (0)