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 30577c810e561cb3f675441c0e95a44737cf01da Mon Sep 17 00:00:00 2001 From: Sami Date: Tue, 18 Aug 2026 11:45:14 +0000 Subject: [PATCH 3/3] .github: upgrade Actions Upgrade GitHub Actions to the latest version. Signed-off-by: Sami --- .github/workflows/go-linter.yml | 2 +- .github/workflows/upgrade-actions.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go-linter.yml b/.github/workflows/go-linter.yml index a6b72e4..d211031 100644 --- a/.github/workflows/go-linter.yml +++ b/.github/workflows/go-linter.yml @@ -30,7 +30,7 @@ jobs: repository: nspcc-dev/.github path: nspcc-gh - - uses: actions/setup-go@v6 + - uses: actions/setup-go@v7 with: go-version-file: ${{ inputs.workdir }}/go.mod cache-dependency-path: ${{ inputs.workdir }}/go.sum diff --git a/.github/workflows/upgrade-actions.yml b/.github/workflows/upgrade-actions.yml index f79830b..0d23682 100644 --- a/.github/workflows/upgrade-actions.yml +++ b/.github/workflows/upgrade-actions.yml @@ -28,7 +28,7 @@ jobs: repo: ${{ fromJson(needs.define-matrix.outputs.repos) }} steps: - name: Clone repo - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: repository: nspcc-dev/${{matrix.repo}} token: ${{ secrets.SAMI_GHACTION_UPGRADE_TOKEN }}