File tree 4 files changed +10
-8
lines changed
4 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -15,13 +15,13 @@ jobs:
15
15
platform : ["linux/amd64"]
16
16
steps :
17
17
- name : Checkout repository
18
- uses : actions/checkout@v3
18
+ uses : actions/checkout@v4
19
19
# https://github.com/docker/setup-qemu-action
20
20
- name : Set up QEMU
21
- uses : docker/setup-qemu-action@v1
21
+ uses : docker/setup-qemu-action@v3
22
22
# https://github.com/docker/setup-buildx-action
23
23
- name : Set up Docker Buildx
24
- uses : docker/setup-buildx-action@v1
24
+ uses : docker/setup-buildx-action@v3
25
25
- name : Build action image
26
26
run : make docker-build
27
27
env :
Original file line number Diff line number Diff line change 7
7
name : Test the action
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- - uses : actions/checkout@v3
10
+ - uses : actions/checkout@v4
11
11
- name : fetch the version
12
12
uses : sudo-bot/action-docker-compose@latest
13
13
with :
Original file line number Diff line number Diff line change @@ -14,15 +14,17 @@ jobs:
14
14
runs-on : ubuntu-latest
15
15
steps :
16
16
- name : Check out the repository
17
- uses : actions/checkout@v3
17
+ uses : actions/checkout@v4
18
18
- name : Login to DockerHub
19
- uses : docker/login-action@v1
19
+ uses : docker/login-action@v3
20
20
with :
21
21
registry : docker.io
22
22
username : ${{ secrets.DOCKER_REPOSITORY_LOGIN }}
23
23
password : ${{ secrets.DOCKER_REPOSITORY_PASSWORD }}
24
24
- name : Build action image
25
- run : IMAGE_TAG="docker.io/botsudo/action-docker-compose:latest" make docker-build
25
+ run : make docker-build
26
+ env :
27
+ IMAGE_TAG : " docker.io/botsudo/action-docker-compose:latest"
26
28
27
29
- name : Sign and push docker image
28
30
uses : sudo-bot/action-docker-sign@latest
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ I use the base image [docker/compose](https://hub.docker.com/r/docker/compose) f
11
11
## Example usage
12
12
13
13
``` yml
14
- - uses : actions/checkout@v3
14
+ - uses : actions/checkout@v4
15
15
- name : run docker-compose
16
16
uses : sudo-bot/action-docker-compose@latest
17
17
with :
You can’t perform that action at this time.
0 commit comments