Skip to content

Commit a8e75a9

Browse files
author
user
committed
merge updates from soldnerd for: docker/build-push-action (435), docker/login-action (436), docker/metadata-action (437), docker/setup-buildx-action (438), docker/setup-qemu-action (439)
1 parent 0156f84 commit a8e75a9

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

.github/workflows/master.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ jobs:
1414

1515
- name: Set up CI Image Metadata
1616
id: docker_meta_ci
17-
uses: docker/metadata-action@v4
17+
uses: docker/metadata-action@v5
1818
with:
1919
images: solidnerd/bookstack-dev
2020
tags: |
2121
type=sha
2222
2323
- name: Set up Docker Buildx
24-
uses: docker/setup-buildx-action@v2
24+
uses: docker/setup-buildx-action@v3
2525

2626
- name: Build Image
27-
uses: docker/build-push-action@v4
27+
uses: docker/build-push-action@v5
2828
with:
2929
context: .
3030
file: ./Dockerfile
@@ -70,7 +70,7 @@ jobs:
7070

7171
- name: Set up Docker Hub Image Metadata
7272
id: docker_meta
73-
uses: docker/metadata-action@v4
73+
uses: docker/metadata-action@v5
7474
with:
7575
images: solidnerd/bookstack,ghcr.io/solidnerd/docker-bookstack
7676
tags: |
@@ -95,24 +95,24 @@ jobs:
9595
uses: docker/setup-qemu-action@v2
9696

9797
- name: Set up Docker Buildx
98-
uses: docker/setup-buildx-action@v2
98+
uses: docker/setup-buildx-action@v3
9999

100100
- name: Login to DockerHub
101101
if: github.event_name != 'pull_request'
102-
uses: docker/login-action@v2
102+
uses: docker/login-action@v3
103103
with:
104104
username: ${{ secrets.DOCKER_USERNAME }}
105105
password: ${{ secrets.DOCKER_PASSWORD }}
106106

107107
- name: Login to GitHub Container Registry
108-
uses: docker/login-action@v2
108+
uses: docker/login-action@v3
109109
with:
110110
registry: ghcr.io
111111
username: ${{ github.repository_owner }}
112112
password: ${{ secrets.CR_PAT }}
113113

114114
- name: Build and Push
115-
uses: docker/build-push-action@v4
115+
uses: docker/build-push-action@v5
116116
with:
117117
context: .
118118
file: ./Dockerfile

.github/workflows/pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ jobs:
1414

1515
- name: Docker meta ci
1616
id: docker_meta_ci
17-
uses: docker/metadata-action@v4
17+
uses: docker/metadata-action@v5
1818
with:
1919
images: solidnerd/bookstack-dev
2020
tags: |
2121
type=sha
2222
2323
- name: Set up Docker Buildx
24-
uses: docker/setup-buildx-action@v2
24+
uses: docker/setup-buildx-action@v3
2525

2626
- name: Build and push Dev
27-
uses: docker/build-push-action@v4
27+
uses: docker/build-push-action@v5
2828
with:
2929
context: .
3030
file: ./Dockerfile

.github/workflows/release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ jobs:
1414

1515
- name: Set up CI Image Metadata
1616
id: docker_meta_ci
17-
uses: docker/metadata-action@v4
17+
uses: docker/metadata-action@v5
1818
with:
1919
images: solidnerd/bookstack-dev
2020
tags: |
2121
type=sha
2222
2323
- name: Set up Docker Buildx
24-
uses: docker/setup-buildx-action@v2
24+
uses: docker/setup-buildx-action@v3
2525

2626
- name: Build and push Dev
27-
uses: docker/build-push-action@v4
27+
uses: docker/build-push-action@v5
2828
with:
2929
context: .
3030
file: ./Dockerfile
@@ -69,7 +69,7 @@ jobs:
6969

7070
- name: Set up Docker Hub Image Metadata
7171
id: docker_meta
72-
uses: docker/metadata-action@v4
72+
uses: docker/metadata-action@v5
7373
with:
7474
images: |
7575
solidnerd/bookstack
@@ -101,24 +101,24 @@ jobs:
101101
uses: docker/setup-qemu-action@v2
102102

103103
- name: Set up Docker Buildx
104-
uses: docker/setup-buildx-action@v2
104+
uses: docker/setup-buildx-action@v3
105105

106106
- name: Login to DockerHub
107107
if: github.event_name != 'pull_request'
108-
uses: docker/login-action@v2
108+
uses: docker/login-action@v3
109109
with:
110110
username: ${{ secrets.DOCKER_USERNAME }}
111111
password: ${{ secrets.DOCKER_PASSWORD }}
112112

113113
- name: Login to GitHub Container Registry
114-
uses: docker/login-action@v2
114+
uses: docker/login-action@v3
115115
with:
116116
registry: ghcr.io
117117
username: ${{ github.repository_owner }}
118118
password: ${{ secrets.CR_PAT }}
119119

120120
- name: Build and Push master
121-
uses: docker/build-push-action@v4
121+
uses: docker/build-push-action@v5
122122
with:
123123
context: .
124124
file: ./Dockerfile

0 commit comments

Comments
 (0)