Skip to content

Commit 2e36f78

Browse files
authored
Update main.yml
1 parent cc5928c commit 2e36f78

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,30 +23,30 @@ jobs:
2323
# Steps represent a sequence of tasks that will be executed as part of the job
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v4
2727

2828
- name: Set up QEMU
29-
uses: docker/setup-qemu-action@v1
29+
uses: docker/setup-qemu-action@v3
3030

3131
- name: Set up Docker Buildx
32-
uses: docker/setup-buildx-action@v1
32+
uses: docker/setup-buildx-action@v3
3333

3434
- name: Login to Registry
35-
uses: docker/login-action@v1
35+
uses: docker/login-action@v3
3636
with:
3737
# registry: docker.pkg.github.com
3838
registry: ghcr.io
3939
username: ${{ github.actor }}
4040
password: ${{ secrets.GITHUB_TOKEN }}
4141

4242
- name: Cache Docker layers
43-
uses: actions/cache@v2
43+
uses: actions/cache@v4
4444
with:
4545
path: /tmp/.buildx-cache
4646
key: ${{ runner.os }}-buildx-${{ github.sha }}
4747
restore-keys: ${{ runner.os }}-buildx-
4848

49-
- uses: docker/build-push-action@v5
49+
- uses: docker/build-push-action@v6
5050
with:
5151
context: .
5252
platforms: linux/amd64,linux/arm64

0 commit comments

Comments
 (0)