@@ -26,13 +26,13 @@ jobs:
2626 packages : write
2727 if : github.event_name == 'release' || (github.event_name == 'pull_request' && github.event.action != 'closed' && github.repository == github.event.pull_request.head.repo.full_name)
2828 steps :
29- - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
29+ - uses : actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
3030 with :
3131 fetch-depth : 0
3232 - name : Set .env
3333 run : cp .env.example .env
3434 - name : Login to GitHub Container Registry
35- uses : docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0 .0
35+ uses : docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1 .0
3636 with :
3737 registry : ghcr.io
3838 username : ${{ github.actor }}
@@ -41,29 +41,29 @@ jobs:
4141 uses : docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0
4242 - name : Set up Docker Buildx
4343 id : buildx
44- uses : docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0 .0
44+ uses : docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3 .0
4545 - run : echo "TAG_NAME=${HEAD_REF//\//-}" >> "$GITHUB_ENV"
4646 env :
4747 HEAD_REF : ${{github.head_ref}}
4848 if : ${{ github.event_name == 'pull_request' }}
4949 - run : echo 'TAG_NAME=${{ github.event.release.tag_name }}' >> "$GITHUB_ENV"
5050 if : ${{ github.event_name == 'release' }}
5151 - name : Build and push (build)
52- uses : docker/bake-action@849707117b03d39aba7924c50a10376a69e88d7d # v4.1 .0
52+ uses : docker/bake-action@017aa056d6bfc9797de5a5dd354a209dc07b490e # v4.3 .0
5353 env :
5454 DOCKER_CONTENT_TRUST : 1
5555 with :
5656 push : true
5757 files : build.docker-compose.yml
5858 - name : Build and push (main)
59- uses : docker/bake-action@849707117b03d39aba7924c50a10376a69e88d7d # v4.1 .0
59+ uses : docker/bake-action@017aa056d6bfc9797de5a5dd354a209dc07b490e # v4.3 .0
6060 env :
6161 DOCKER_CONTENT_TRUST : 1
6262 with :
6363 push : true
6464 files : docker-compose.yml
6565 - name : Build and push (dev)
66- uses : docker/bake-action@849707117b03d39aba7924c50a10376a69e88d7d # v4.1 .0
66+ uses : docker/bake-action@017aa056d6bfc9797de5a5dd354a209dc07b490e # v4.3 .0
6767 env :
6868 DOCKER_CONTENT_TRUST : 1
6969 with :
@@ -72,23 +72,23 @@ jobs:
7272 - run : echo 'TAG_NAME=latest' >> "$GITHUB_ENV"
7373 if : ${{ github.event_name == 'release' }}
7474 - name : Build and push (build) (latest)
75- uses : docker/bake-action@849707117b03d39aba7924c50a10376a69e88d7d # v4.1 .0
75+ uses : docker/bake-action@017aa056d6bfc9797de5a5dd354a209dc07b490e # v4.3 .0
7676 if : ${{ github.event_name == 'release' }}
7777 env :
7878 DOCKER_CONTENT_TRUST : 1
7979 with :
8080 push : true
8181 files : build.docker-compose.yml
8282 - name : Build and push (main) (latest)
83- uses : docker/bake-action@849707117b03d39aba7924c50a10376a69e88d7d # v4.1 .0
83+ uses : docker/bake-action@017aa056d6bfc9797de5a5dd354a209dc07b490e # v4.3 .0
8484 if : ${{ github.event_name == 'release' }}
8585 env :
8686 DOCKER_CONTENT_TRUST : 1
8787 with :
8888 push : true
8989 files : docker-compose.yml
9090 - name : Build and push (dev) (latest)
91- uses : docker/bake-action@849707117b03d39aba7924c50a10376a69e88d7d # v4.1 .0
91+ uses : docker/bake-action@017aa056d6bfc9797de5a5dd354a209dc07b490e # v4.3 .0
9292 if : ${{ github.event_name == 'release' }}
9393 env :
9494 DOCKER_CONTENT_TRUST : 1
@@ -111,7 +111,7 @@ jobs:
111111 needs : deploy_docker_image
112112 if : always() && (needs.deploy_docker_image.result == 'success' || (github.event_name == 'pull_request' && github.event.action == 'closed'))
113113 steps :
114- - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
114+ - uses : actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
115115 if : github.event_name != 'pull_request' || github.event.action != 'closed'
116116 with :
117117 fetch-depth : 0
@@ -130,7 +130,7 @@ jobs:
130130 update-dockle :
131131 runs-on : ubuntu-latest
132132 steps :
133- - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
133+ - uses : actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
134134 if : github.event_name != 'pull_request' || github.event.action != 'closed'
135135 with :
136136 fetch-depth : 0
@@ -147,7 +147,7 @@ jobs:
147147 DOCKER_CONTENT_TRUST : 1
148148 REPOSITORY : ${{github.repository}}
149149 steps :
150- - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
150+ - uses : actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
151151 - run : bash "${GITHUB_WORKSPACE}/scripts/deploy_hato_bot/dockle/run_dockle.sh"
152152 env :
153153 HEAD_REF : ${{github.head_ref || github.event.release.tag_name}}
0 commit comments