From 14aa39d2706224c3b4f5422281b163e00f68ad93 Mon Sep 17 00:00:00 2001 From: Viacheslav Semushin Date: Mon, 3 Aug 2026 15:59:04 +0300 Subject: [PATCH 1/2] Bump actions/cache to v6 --- action-validator/action.yml | 2 +- actionlint/action.yml | 2 +- editorconfig-checker/action.yml | 2 +- prettier/action.yml | 2 +- shellcheck/action.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/action-validator/action.yml b/action-validator/action.yml index 6a4374f..58fefdc 100644 --- a/action-validator/action.yml +++ b/action-validator/action.yml @@ -11,7 +11,7 @@ runs: steps: - name: Cache id: cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: /usr/local/bin/action-validator key: action-validator-${{ inputs.version }} diff --git a/actionlint/action.yml b/actionlint/action.yml index c5e75b0..622673a 100644 --- a/actionlint/action.yml +++ b/actionlint/action.yml @@ -11,7 +11,7 @@ runs: steps: - name: Cache id: cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: /usr/local/bin/actionlint key: actionlint-${{ inputs.version }} diff --git a/editorconfig-checker/action.yml b/editorconfig-checker/action.yml index ea60d86..026212a 100644 --- a/editorconfig-checker/action.yml +++ b/editorconfig-checker/action.yml @@ -11,7 +11,7 @@ runs: steps: - name: Cache Editorconfig-Checker binary id: cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: /usr/local/bin/editorconfig-checker key: EditorConfig-Checker-${{ inputs.version }} diff --git a/prettier/action.yml b/prettier/action.yml index 3cef660..d7094ca 100644 --- a/prettier/action.yml +++ b/prettier/action.yml @@ -13,7 +13,7 @@ runs: using: "composite" steps: - name: Cache Prettier - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.npm key: prettier-${{ inputs.version }}-${{ runner.os }}-${{ runner.arch }} diff --git a/shellcheck/action.yml b/shellcheck/action.yml index 9913102..566cd5e 100644 --- a/shellcheck/action.yml +++ b/shellcheck/action.yml @@ -11,7 +11,7 @@ runs: steps: - name: Cache ShellCheck binary id: cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: /usr/local/bin/shellcheck key: shellcheck-${{ inputs.version }} From 831f41297c0369f5ad994330ade40ef1728620be Mon Sep 17 00:00:00 2001 From: Viacheslav Semushin Date: Mon, 3 Aug 2026 15:59:07 +0300 Subject: [PATCH 2/2] Bump octokit/request-action to v3 --- auto-tagger/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto-tagger/action.yml b/auto-tagger/action.yml index 7275994..4944f51 100644 --- a/auto-tagger/action.yml +++ b/auto-tagger/action.yml @@ -45,7 +45,7 @@ runs: - name: Push tag if: inputs.auto_tag_always == 'true' || (github.event.action == 'closed' && github.event.pull_request.merged) - uses: octokit/request-action@v2.x + uses: octokit/request-action@v3.x with: route: POST /repos/:repository/git/refs repository: ${{ github.repository }}