Skip to content

Commit 3a89432

Browse files
committed
Update GitHub actions
1 parent b182d71 commit 3a89432

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

.github/workflows/docker_auto.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,28 +17,28 @@ jobs:
1717
steps:
1818
- name: Login to Docker Hub
1919
id: login_docker
20-
uses: docker/login-action@v1
20+
uses: docker/login-action@v3
2121
with:
2222
username: ${{ secrets.DOCKER_HUB_USERNAME }}
2323
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
2424

2525
- name: Login to Container Registry
2626
id: login_ghcr
27-
uses: docker/login-action@v1
27+
uses: docker/login-action@v3
2828
with:
2929
registry: ghcr.io
3030
username: ${{ github.actor }}
3131
password: ${{ secrets.GITHUB_TOKEN }}
3232

3333
- name: Set up QEMU
34-
uses: docker/setup-qemu-action@v1
34+
uses: docker/setup-qemu-action@v3
3535

3636
- name: Set up Docker Buildx
3737
id: buildx
38-
uses: docker/setup-buildx-action@v1
38+
uses: docker/setup-buildx-action@v3
3939

4040
- name: Cache Docker layers
41-
uses: actions/cache@v2
41+
uses: actions/cache@v4
4242
with:
4343
path: /tmp/.buildx-cache
4444
key: ${{ runner.os }}-buildx-${{ github.sha }}
@@ -47,7 +47,7 @@ jobs:
4747
4848
- name: Check out repo
4949
id: checkout
50-
uses: actions/checkout@v2
50+
uses: actions/checkout@v4
5151

5252
- name: Prepare env variables
5353
id: env
@@ -61,7 +61,7 @@ jobs:
6161
- name: Build and push latest stable branch
6262
if: ${{ env.BUILD_BRANCH == env.STABLE_BRANCH }}
6363
id: docker_build_latest
64-
uses: docker/build-push-action@v2
64+
uses: docker/build-push-action@v6
6565
with:
6666
context: ${{ env.BUILD_BRANCH }}
6767
file: ${{ env.BUILD_BRANCH }}/Dockerfile
@@ -89,7 +89,7 @@ jobs:
8989
- name: Build and push everything else
9090
if: ${{ env.BUILD_BRANCH != env.STABLE_BRANCH }}
9191
id: docker_build_regular
92-
uses: docker/build-push-action@v2
92+
uses: docker/build-push-action@v6
9393
with:
9494
context: ${{ env.BUILD_BRANCH }}
9595
file: ${{ env.BUILD_BRANCH }}/Dockerfile

.github/workflows/docker_description.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- name: Check out repo
1616
id: checkout
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818

1919
- name: Update Docker Hub description
2020
id: description

.github/workflows/docker_manual.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,28 +17,28 @@ jobs:
1717
steps:
1818
- name: Login to Docker Hub
1919
id: login_docker
20-
uses: docker/login-action@v1
20+
uses: docker/login-action@v3
2121
with:
2222
username: ${{ secrets.DOCKER_HUB_USERNAME }}
2323
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
2424

2525
- name: Login to Container Registry
2626
id: login_ghcr
27-
uses: docker/login-action@v1
27+
uses: docker/login-action@v3
2828
with:
2929
registry: ghcr.io
3030
username: ${{ github.actor }}
3131
password: ${{ secrets.GITHUB_TOKEN }}
3232

3333
- name: Set up QEMU
34-
uses: docker/setup-qemu-action@v1
34+
uses: docker/setup-qemu-action@v3
3535

3636
- name: Set up Docker Buildx
3737
id: buildx
38-
uses: docker/setup-buildx-action@v1
38+
uses: docker/setup-buildx-action@v3
3939

4040
- name: Cache Docker layers
41-
uses: actions/cache@v2
41+
uses: actions/cache@v4
4242
with:
4343
path: /tmp/.buildx-cache
4444
key: ${{ runner.os }}-buildx-${{ github.sha }}
@@ -47,7 +47,7 @@ jobs:
4747
4848
- name: Check out repo
4949
id: checkout
50-
uses: actions/checkout@v2
50+
uses: actions/checkout@v4
5151

5252
- name: Prepare env variables
5353
id: env
@@ -61,7 +61,7 @@ jobs:
6161
- name: Build and push latest stable branch
6262
if: ${{ env.BUILD_BRANCH == env.STABLE_BRANCH }}
6363
id: docker_build_latest
64-
uses: docker/build-push-action@v2
64+
uses: docker/build-push-action@v6
6565
with:
6666
context: ${{ env.BUILD_BRANCH }}
6767
file: ${{ env.BUILD_BRANCH }}/Dockerfile
@@ -89,7 +89,7 @@ jobs:
8989
- name: Build and push everything else
9090
if: ${{ env.BUILD_BRANCH != env.STABLE_BRANCH }}
9191
id: docker_build_regular
92-
uses: docker/build-push-action@v2
92+
uses: docker/build-push-action@v6
9393
with:
9494
context: ${{ env.BUILD_BRANCH }}
9595
file: ${{ env.BUILD_BRANCH }}/Dockerfile

.github/workflows/update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- name: Check out repo
1313
id: checkout
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515
with:
1616
token: ${{ secrets.ACTION_TOKEN }}
1717

0 commit comments

Comments
 (0)