From 6f1cc12003135e23d7bd4f0c64dd76cae0b13568 Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Tue, 18 Aug 2026 14:42:38 +0300 Subject: [PATCH 1/3] .github: fix Sami token for upgrading action Signed-off-by: Anna Shaleva --- .github/workflows/upgrade-actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/upgrade-actions.yml b/.github/workflows/upgrade-actions.yml index 623ba24..443812d 100644 --- a/.github/workflows/upgrade-actions.yml +++ b/.github/workflows/upgrade-actions.yml @@ -31,7 +31,7 @@ jobs: uses: actions/checkout@v5 with: repository: https://github.com/nspcc-dev/${{matrix.repo}}.git - token: ${{ GH_TOKEN }} + token: ${{ secrets.SAMI_GHACTION_UPGRADE_TOKEN }} - name: Checkout upgrade-actions branch run: git checkout -b upgrade-actions || git checkout upgrade-actions From 843eb2f89fcdb6fa9b8df6e0814ce686479cd67a Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Tue, 18 Aug 2026 14:44:33 +0300 Subject: [PATCH 2/3] .github: fix repository formatting for upgrading action Signed-off-by: Anna Shaleva --- .github/workflows/upgrade-actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/upgrade-actions.yml b/.github/workflows/upgrade-actions.yml index 443812d..f79830b 100644 --- a/.github/workflows/upgrade-actions.yml +++ b/.github/workflows/upgrade-actions.yml @@ -30,7 +30,7 @@ jobs: - name: Clone repo uses: actions/checkout@v5 with: - repository: https://github.com/nspcc-dev/${{matrix.repo}}.git + repository: nspcc-dev/${{matrix.repo}} token: ${{ secrets.SAMI_GHACTION_UPGRADE_TOKEN }} - name: Checkout upgrade-actions branch From 24a075c670e718dfe9e6fa5fd0378de699ec9c2e Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Tue, 18 Aug 2026 14:47:25 +0300 Subject: [PATCH 3/3] .github: exclude protected forks from actions upgrader Signed-off-by: Anna Shaleva --- .github/workflows/upgrade-actions.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/upgrade-actions.yml b/.github/workflows/upgrade-actions.yml index f79830b..2063370 100644 --- a/.github/workflows/upgrade-actions.yml +++ b/.github/workflows/upgrade-actions.yml @@ -26,6 +26,10 @@ jobs: strategy: matrix: repo: ${{ fromJson(needs.define-matrix.outputs.repos) }} + exclude: + - repo: bbolt + - repo: saml + - repo: dot-hugo steps: - name: Clone repo uses: actions/checkout@v5