From f075c11e230398ec81596f11cc49a676e733eaf4 Mon Sep 17 00:00:00 2001 From: tsuna-can-se <61451753+tsuna-can-se@users.noreply.github.com> Date: Wed, 18 Oct 2023 13:04:16 +0900 Subject: [PATCH] =?UTF-8?q?checks=E3=81=B8=E3=81=AE=E6=9B=B8=E8=BE=BC?= =?UTF-8?q?=E3=81=BF=E3=82=92=E8=A8=B1=E5=8F=AF=E3=81=99=E3=82=8B=E3=82=88?= =?UTF-8?q?=E3=81=86=E8=A8=AD=E5=AE=9A=E3=81=99=E3=82=8B=20(#328)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * checksへの書込みを許可するよう設定 * checkoutのタスクをv4に更新 * contentsの読取権限を追加 --- .github/workflows/back-sample-pull-request-ut.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/back-sample-pull-request-ut.yml b/.github/workflows/back-sample-pull-request-ut.yml index 9fb0a5226..7ae764345 100644 --- a/.github/workflows/back-sample-pull-request-ut.yml +++ b/.github/workflows/back-sample-pull-request-ut.yml @@ -18,10 +18,13 @@ on: # yamllint disable-line rule:truthy jobs: build: runs-on: ubuntu-latest + permissions: + checks: write + contents: read steps: - name: ブランチのチェックアウト - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0