Skip to content

Commit 3ac8936

Browse files
authored
Merge branch 'develop' into release_v305
2 parents f16ccda + 44e660c commit 3ac8936

17 files changed

Lines changed: 783 additions & 690 deletions

.github/workflows/add-to-task-list.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
steps:
1515
- name: Generate a token
1616
id: generate_token
17-
uses: actions/create-github-app-token@3378cda945da322a8db4b193e19d46352ebe2de5 # v1.10.4
17+
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
1818
with:
1919
app-id: ${{ secrets.PROJECT_AUTOMATION_APP_ID }}
2020
private-key: ${{ secrets.PROJECT_AUTOMATION_PRIVATE_KEY }}
21-
- uses: dev-hato/actions-add-to-projects@cf891aa9c9173f90e6670671ed43f2ee25b5626b # v0.0.79
21+
- uses: dev-hato/actions-add-to-projects@6b85916c6dcb4f2d40888c3ba373c783615538ee # v0.0.81
2222
with:
2323
github-token: ${{steps.generate_token.outputs.token}}
2424
project-url: https://github.com/orgs/dev-hato/projects/1

.github/workflows/deploy-hato-bot.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ 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@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}}

.github/workflows/format-json-yml.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ jobs:
2020
steps:
2121
- name: Generate a token
2222
id: generate_token
23-
uses: actions/create-github-app-token@3378cda945da322a8db4b193e19d46352ebe2de5 # v1.10.4
23+
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
2424
with:
2525
app-id: ${{ secrets.PROJECT_AUTOMATION_APP_ID }}
2626
private-key: ${{ secrets.PROJECT_AUTOMATION_PRIVATE_KEY }}
27-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
27+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
2828
if: github.event_name != 'pull_request' || github.event.action != 'closed'
2929
with:
3030
fetch-depth: 0
3131
ref: ${{ github.event.pull_request.head.sha }}
3232
token: ${{steps.generate_token.outputs.token}}
33-
- uses: dev-hato/actions-format-json-yml@c5371101d8408bd8e8d363128ace15f1487bf8d7 # v0.0.70
33+
- uses: dev-hato/actions-format-json-yml@bae3230b89fddb12957fc2a7b869ef833956ec78 # v0.0.72
3434
with:
3535
github-token: ${{steps.generate_token.outputs.token}}
3636
concurrency:

.github/workflows/github-actions-cache-cleaner.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
github-actions-cache-cleaner:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
16-
- uses: dev-hato/github-actions-cache-cleaner@377e370b2c439bbea69dce5c7e91167796e6bb70 # v0.0.50
15+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
16+
- uses: dev-hato/github-actions-cache-cleaner@d37872269f7da1f1763264f96f3d571c39fb91e1 # v0.0.52
1717
with:
1818
github-token: ${{secrets.GITHUB_TOKEN}}
1919
concurrency:

.github/workflows/pr-copy-ci-hato-bot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
pr-copy-ci:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
12+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
1313
- name: Generate a token
1414
id: generate_token
15-
uses: actions/create-github-app-token@3378cda945da322a8db4b193e19d46352ebe2de5 # v1.10.4
15+
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
1616
with:
1717
app-id: ${{ secrets.PROJECT_AUTOMATION_APP_ID }}
1818
private-key: ${{ secrets.PROJECT_AUTOMATION_PRIVATE_KEY }}

.github/workflows/pr-format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
pr-format:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
22+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
2323
if: github.event_name != 'pull_request' || github.event.action != 'closed'
2424
with:
2525
# ここでsubmodule持ってくるとdetached headにcommitして死ぬ
@@ -44,7 +44,7 @@ jobs:
4444
id: format
4545
if: github.event_name != 'pull_request' || github.event.action != 'closed'
4646
run: bash "${GITHUB_WORKSPACE}/scripts/pr_format/pr_format/format.sh"
47-
- uses: dev-hato/actions-diff-pr-management@128afc4203b4e391e03868be91c987b2ddba7ea5 # v1.1.12
47+
- uses: dev-hato/actions-diff-pr-management@7cc8ab103917849f6995064afae9f4cbcfd009ae # v1.1.13
4848
if: success() || failure()
4949
with:
5050
github-token: ${{secrets.GITHUB_TOKEN}}

.github/workflows/pr-merge-develop-hato-bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
pr-master-to-develop:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
13+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
1414
with:
1515
fetch-depth: 0
1616
- name: Get PullRequests

.github/workflows/pr-release-hato-bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
pr-release:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
12+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
1313
with:
1414
fetch-depth: 0
1515
- name: Get diff

.github/workflows/pr-test-hato-bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
pr-test:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
16+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
1717
with:
1818
submodules: "recursive"
1919
- name: Set up Python

.github/workflows/pr-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
pr-super-lint:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
13+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
1414
with:
1515
submodules: "recursive"
1616
fetch-depth: 0
@@ -26,7 +26,7 @@ jobs:
2626
DEST_PATH: "/home/runner/work/_temp/_github_workflow/.venv"
2727
run: bash "${GITHUB_WORKSPACE}/scripts/pr_test/pr_super_lint/set_venv_path.sh"
2828
- name: Set up Node.js
29-
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
29+
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
3030
with:
3131
cache: npm
3232
node-version-file: package.json
@@ -50,7 +50,7 @@ jobs:
5050
pr-dotenv-linter:
5151
runs-on: ubuntu-latest
5252
steps:
53-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
53+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
5454
with:
5555
submodules: "recursive"
5656
fetch-depth: 0

0 commit comments

Comments
 (0)