We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fec559 commit e3c4b3fCopy full SHA for e3c4b3f
1 file changed
.github/workflows/build-image.yml
@@ -13,7 +13,7 @@ jobs:
13
packages: write
14
15
steps:
16
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
17
18
- name: Pull models from HuggingFace space (LFS)
19
run: |
@@ -23,17 +23,17 @@ jobs:
23
cp -r models $GITHUB_WORKSPACE/models
24
25
- name: Log in to GHCR
26
- uses: docker/login-action@v3
+ uses: docker/login-action@v4
27
with:
28
registry: ghcr.io
29
username: ${{ github.actor }}
30
password: ${{ secrets.GITHUB_TOKEN }}
31
32
- name: Set up Docker Buildx
33
- uses: docker/setup-buildx-action@v3
+ uses: docker/setup-buildx-action@v4
34
35
- name: Build and push
36
- uses: docker/build-push-action@v5
+ uses: docker/build-push-action@v7
37
38
context: .
39
push: true
0 commit comments