From ff898328eb63bf870ba3eb6dadce609d81f01373 Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Fri, 26 Dec 2025 15:24:14 +0900 Subject: [PATCH 01/20] test --- .github/workflows/test.yaml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 722c4dce..2ff07291 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,13 +1,11 @@ --- name: test -on: - push: - tags: - - v* +on: pull_request jobs: test: runs-on: ubuntu-24.04 steps: - - run: echo "$PAYLOAD" - env: - PAYLOAD: ${{ toJson(github.event) }} + - uses: actions/checkout@v4 + with: + persist-credentials: false + - uses: suzuki-shunsuke/pinact-action@pr/838 From c2a13bbe782d36f3420892e7abb117ba85f1c092 Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Fri, 26 Dec 2025 17:51:02 +0900 Subject: [PATCH 02/20] test From 732c1e0c167cca872f29b1bdbd411703621e1e47 Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Fri, 26 Dec 2025 19:18:04 +0900 Subject: [PATCH 03/20] test From e750a7cf1be7366be5646e7265f0c5f3cc3e5364 Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Fri, 26 Dec 2025 19:28:27 +0900 Subject: [PATCH 04/20] test From 69b1df80fb6341f131a766932dfcc6c821d90b97 Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Fri, 26 Dec 2025 19:29:46 +0900 Subject: [PATCH 05/20] fix --- .github/workflows/test.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 2ff07291..07159a1e 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -4,6 +4,9 @@ on: pull_request jobs: test: runs-on: ubuntu-24.04 + timeout-minutes: 10 + permissions: + contents: write steps: - uses: actions/checkout@v4 with: From e1dec109340b91cee4b4dff8bfcb754b56a92ba8 Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Fri, 26 Dec 2025 19:30:50 +0900 Subject: [PATCH 06/20] fix --- .github/workflows/test.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 07159a1e..250f6594 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -7,6 +7,7 @@ jobs: timeout-minutes: 10 permissions: contents: write + actions: write steps: - uses: actions/checkout@v4 with: From ab75ee6e5bb701087dbf8176e1f5d513dbcd76a7 Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Fri, 26 Dec 2025 19:38:09 +0900 Subject: [PATCH 07/20] test From 2da44198e7f92ebb4528c069a9a4a0229fea60fe Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Fri, 26 Dec 2025 19:41:46 +0900 Subject: [PATCH 08/20] fix --- .github/workflows/test.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 250f6594..b3c0dbee 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -13,3 +13,6 @@ jobs: with: persist-credentials: false - uses: suzuki-shunsuke/pinact-action@pr/838 + with: + app_id: ${{ vars.APP_ID }} + app_private_key: ${{ secrets.APP_PRIVATE_KEY }} From c3c4bb047a071ddac0720e6d76559632da241846 Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Fri, 26 Dec 2025 19:48:31 +0900 Subject: [PATCH 09/20] skip_push: true --- .github/workflows/test.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index b3c0dbee..0fe2ce6c 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -14,5 +14,6 @@ jobs: persist-credentials: false - uses: suzuki-shunsuke/pinact-action@pr/838 with: - app_id: ${{ vars.APP_ID }} - app_private_key: ${{ secrets.APP_PRIVATE_KEY }} + # app_id: ${{ vars.APP_ID }} + # app_private_key: ${{ secrets.APP_PRIVATE_KEY }} + skip_push: true From 3fd927ab3b9b2c68651bfa001a20d97e96d23cbd Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Fri, 26 Dec 2025 20:57:21 +0900 Subject: [PATCH 10/20] test review --- .github/workflows/test.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 0fe2ce6c..e9849b91 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -7,7 +7,7 @@ jobs: timeout-minutes: 10 permissions: contents: write - actions: write + pull-requests: write steps: - uses: actions/checkout@v4 with: @@ -17,3 +17,4 @@ jobs: # app_id: ${{ vars.APP_ID }} # app_private_key: ${{ secrets.APP_PRIVATE_KEY }} skip_push: true + review: true From fccac2619b5c7610fd22d5189fd4ecb7b824e769 Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Fri, 26 Dec 2025 21:03:09 +0900 Subject: [PATCH 11/20] test update --- .github/workflows/test.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e9849b91..824f8586 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -18,3 +18,4 @@ jobs: # app_private_key: ${{ secrets.APP_PRIVATE_KEY }} skip_push: true review: true + update: true From 768d1ca3886796e30424822316126c753010aad1 Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Fri, 26 Dec 2025 21:26:04 +0900 Subject: [PATCH 12/20] test --- .github/workflows/test.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 824f8586..5388ad1a 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -12,10 +12,12 @@ jobs: - uses: actions/checkout@v4 with: persist-credentials: false - - uses: suzuki-shunsuke/pinact-action@pr/838 + - uses: suzuki-shunsuke/pinact-action@v1.1.0-0 with: - # app_id: ${{ vars.APP_ID }} - # app_private_key: ${{ secrets.APP_PRIVATE_KEY }} - skip_push: true - review: true + app_id: ${{ vars.APP_ID }} + app_private_key: ${{ secrets.APP_PRIVATE_KEY }} + # skip_push: true update: true + includes: | + actions/checkout + min_age: 30 From 0a52280ad15cf16b0063c3e50122f3a005d9e7f7 Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Fri, 26 Dec 2025 21:28:43 +0900 Subject: [PATCH 13/20] fix --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 5388ad1a..a8026fd8 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v4 with: persist-credentials: false - - uses: suzuki-shunsuke/pinact-action@v1.1.0-0 + - uses: suzuki-shunsuke/pinact-action@pr/844 with: app_id: ${{ vars.APP_ID }} app_private_key: ${{ secrets.APP_PRIVATE_KEY }} From 0568e8b3bfee23d800462f1babf996cba2f27df4 Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Fri, 26 Dec 2025 21:36:40 +0900 Subject: [PATCH 14/20] test From e1e8dcb6a6ddea8b29f10d5fc2b8b66a697456c8 Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Fri, 26 Dec 2025 21:39:38 +0900 Subject: [PATCH 15/20] test From 323073aea5204b3e7448f32c385d418d962e9ccf Mon Sep 17 00:00:00 2001 From: "szksh-lab-2-app[bot]" <205512628+szksh-lab-2-app[bot]@users.noreply.github.com> Date: Fri, 26 Dec 2025 12:43:56 +0000 Subject: [PATCH 16/20] chore(pinact): pin GitHub Actions --- .github/workflows/count-asdf-plugins.yaml | 2 +- .github/workflows/test-pinact.yaml | 4 ++-- .github/workflows/test.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/count-asdf-plugins.yaml b/.github/workflows/count-asdf-plugins.yaml index 00a8037b..c0bf4a4b 100644 --- a/.github/workflows/count-asdf-plugins.yaml +++ b/.github/workflows/count-asdf-plugins.yaml @@ -5,7 +5,7 @@ jobs: timeout-minutes: 30 runs-on: ubuntu-latest steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false - uses: asdf-vm/actions/setup@6a442392015fbbdd8b48696d41e0051b2698b2e4 # v2.2.0 diff --git a/.github/workflows/test-pinact.yaml b/.github/workflows/test-pinact.yaml index 23badab1..1ef3fed4 100644 --- a/.github/workflows/test-pinact.yaml +++ b/.github/workflows/test-pinact.yaml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest permissions: {} steps: - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false - uses: actions/cache@v3.3.1 diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index a8026fd8..8032d424 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -9,7 +9,7 @@ jobs: contents: write pull-requests: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false - uses: suzuki-shunsuke/pinact-action@pr/844 From 5bdf36541999bda67f9ee706b37866af3429e1ee Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Sat, 27 Dec 2025 15:46:43 +0900 Subject: [PATCH 17/20] test reviewdog --- .github/workflows/test.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 8032d424..bb3de8c3 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -12,12 +12,9 @@ jobs: - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false - - uses: suzuki-shunsuke/pinact-action@pr/844 + - uses: suzuki-shunsuke/pinact-action@pr/847 with: app_id: ${{ vars.APP_ID }} app_private_key: ${{ secrets.APP_PRIVATE_KEY }} # skip_push: true - update: true - includes: | - actions/checkout - min_age: 30 + review: true From 3285e957eefcb1a082763b9fba5d29e560cf3416 Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Sat, 27 Dec 2025 15:52:10 +0900 Subject: [PATCH 18/20] update --- .github/workflows/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index bb3de8c3..bf23faa6 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -9,12 +9,12 @@ jobs: contents: write pull-requests: write steps: - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 + - uses: actions/checkout@v6 with: persist-credentials: false - uses: suzuki-shunsuke/pinact-action@pr/847 with: app_id: ${{ vars.APP_ID }} app_private_key: ${{ secrets.APP_PRIVATE_KEY }} - # skip_push: true + skip_push: true review: true From 94b15ac4515c4cef1b35a4a9c5b6a837725ef8cb Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Sat, 27 Dec 2025 16:05:55 +0900 Subject: [PATCH 19/20] test --- .github/workflows/test.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index bf23faa6..5635bb85 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -18,3 +18,4 @@ jobs: app_private_key: ${{ secrets.APP_PRIVATE_KEY }} skip_push: true review: true + reviewdog_fail_level: error From 7fa4b4b29e204f0394696f63860903ba9f7a101a Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Sat, 27 Dec 2025 16:07:41 +0900 Subject: [PATCH 20/20] test --- aqua/reviewdog.yaml | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 aqua/reviewdog.yaml diff --git a/aqua/reviewdog.yaml b/aqua/reviewdog.yaml deleted file mode 100644 index eb43d9ea..00000000 --- a/aqua/reviewdog.yaml +++ /dev/null @@ -1,2 +0,0 @@ -packages: - - name: reviewdog/reviewdog@v0.15.0