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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
29+ - uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
3030 with :
3131 fetch-depth : 0
3232 - name : Set .env
@@ -49,21 +49,21 @@ jobs:
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@76cc8060bdff6d632a465001e4cf300684c5472c # v5.7 .0
52+ uses : docker/bake-action@e626c7390c9f95508a135a89e65ec698e061fb2a # v5.8 .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@76cc8060bdff6d632a465001e4cf300684c5472c # v5.7 .0
59+ uses : docker/bake-action@e626c7390c9f95508a135a89e65ec698e061fb2a # v5.8 .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@76cc8060bdff6d632a465001e4cf300684c5472c # v5.7 .0
66+ uses : docker/bake-action@e626c7390c9f95508a135a89e65ec698e061fb2a # v5.8 .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@76cc8060bdff6d632a465001e4cf300684c5472c # v5.7 .0
75+ uses : docker/bake-action@e626c7390c9f95508a135a89e65ec698e061fb2a # v5.8 .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@76cc8060bdff6d632a465001e4cf300684c5472c # v5.7 .0
83+ uses : docker/bake-action@e626c7390c9f95508a135a89e65ec698e061fb2a # v5.8 .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@76cc8060bdff6d632a465001e4cf300684c5472c # v5.7 .0
91+ uses : docker/bake-action@e626c7390c9f95508a135a89e65ec698e061fb2a # v5.8 .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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
114+ - uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
115115 if : github.event_name != 'pull_request' || github.event.action != 'closed'
116116 with :
117117 fetch-depth : 0
@@ -122,7 +122,7 @@ jobs:
122122 run : bash "${GITHUB_WORKSPACE}/scripts/deploy_hato_bot/update_version_python_version/get_python_version.sh"
123123 env :
124124 HEAD_REF : ${{github.head_ref || github.event.release.tag_name}}
125- - uses : dev-hato/actions-diff-pr-management@128afc4203b4e391e03868be91c987b2ddba7ea5 # v1.1.12
125+ - uses : dev-hato/actions-diff-pr-management@7cc8ab103917849f6995064afae9f4cbcfd009ae # v1.1.13
126126 with :
127127 github-token : ${{secrets.GITHUB_TOKEN}}
128128 branch-name-prefix : fix-version-python-version
@@ -135,12 +135,12 @@ jobs:
135135 contents : write
136136 pull-requests : write
137137 steps :
138- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
138+ - uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
139139 if : github.event_name != 'pull_request' || github.event.action != 'closed'
140140 with :
141141 fetch-depth : 0
142142 ref : ${{ github.event.pull_request.head.sha }}
143- - uses : actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
143+ - uses : actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
144144 if : github.event_name != 'pull_request' || github.event.action != 'closed'
145145 with :
146146 cache : npm
@@ -151,7 +151,7 @@ jobs:
151151 run : bash "${GITHUB_WORKSPACE}/scripts/deploy_hato_bot/pr_update_version/get_npm_version.sh"
152152 env :
153153 HEAD_REF : ${{github.head_ref || github.event.release.tag_name}}
154- - uses : dev-hato/actions-diff-pr-management@128afc4203b4e391e03868be91c987b2ddba7ea5 # v1.1.12
154+ - uses : dev-hato/actions-diff-pr-management@7cc8ab103917849f6995064afae9f4cbcfd009ae # v1.1.13
155155 with :
156156 github-token : ${{secrets.GITHUB_TOKEN}}
157157 branch-name-prefix : fix-version
@@ -161,36 +161,36 @@ jobs:
161161 runs-on : ubuntu-latest
162162 needs : pr-update-version
163163 steps :
164- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
164+ - uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
165165 if : github.event_name != 'pull_request' || github.event.action != 'closed'
166166 with :
167167 # ここでsubmodule持ってくるとdetached headにcommitして死ぬ
168168 # submodule: 'recursive'
169169 fetch-depth : 0
170170 ref : ${{ github.event.pull_request.head.sha }}
171171 - name : Set up Node.js
172- uses : actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
172+ uses : actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
173173 if : github.event_name != 'pull_request' || github.event.action != 'closed'
174174 with :
175175 cache : npm
176176 node-version-file : package.json
177177 - name : Install dependencies
178178 if : github.event_name != 'pull_request' || github.event.action != 'closed'
179179 run : bash "${GITHUB_WORKSPACE}/scripts/deploy_hato_bot/npm_install.sh"
180- - uses : dev-hato/actions-diff-pr-management@128afc4203b4e391e03868be91c987b2ddba7ea5 # v1.1.12
180+ - uses : dev-hato/actions-diff-pr-management@7cc8ab103917849f6995064afae9f4cbcfd009ae # v1.1.13
181181 with :
182182 github-token : ${{secrets.GITHUB_TOKEN}}
183183 branch-name-prefix : npm
184184 pr-title-prefix : package.jsonやpackage-lock.jsonが更新されたので直してあげたよ!
185185 update-dockle :
186186 runs-on : ubuntu-latest
187187 steps :
188- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
188+ - uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
189189 if : github.event_name != 'pull_request' || github.event.action != 'closed'
190190 with :
191191 fetch-depth : 0
192192 ref : ${{ github.event.pull_request.head.sha }}
193- - uses : dev-hato/actions-update-dockle@186f5a0a044d060eaee0814805a7abe2f474bd9d # v0.0.94
193+ - uses : dev-hato/actions-update-dockle@c826f84c72bdedef7eb84c90d4370405b984f0dc # v0.0.97
194194 with :
195195 github-token : ${{secrets.GITHUB_TOKEN}}
196196 dockle :
@@ -202,7 +202,7 @@ jobs:
202202 DOCKER_CONTENT_TRUST : 1
203203 REPOSITORY : ${{github.repository}}
204204 steps :
205- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
205+ - uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
206206 - run : bash "${GITHUB_WORKSPACE}/scripts/deploy_hato_bot/dockle/run_dockle.sh"
207207 env :
208208 HEAD_REF : ${{github.head_ref || github.event.release.tag_name}}
0 commit comments