From 027064abf2bba9a510cbdf008501d70f498cd890 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 06:23:51 +0000 Subject: [PATCH 1/5] chore(deps): bump actions/cache in /workflow-templates Bumps [actions/cache](https://github.com/actions/cache) from 5.0.3 to 5.0.4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/cdf6c1fa76f9f475f3d7449005a359c84ca0f306...668228422ae6a00e4ad889ee87cd7109ec5666a7) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- workflow-templates/link-checker.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow-templates/link-checker.yaml b/workflow-templates/link-checker.yaml index a58a4e6..478675a 100644 --- a/workflow-templates/link-checker.yaml +++ b/workflow-templates/link-checker.yaml @@ -20,7 +20,7 @@ jobs: persist-credentials: false - name: "Restore lychee cache" - uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 + uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 id: restore-cache with: path: .lycheecache From 0255ff684063a5e5b097cc7d9873c24d0e0b0b23 Mon Sep 17 00:00:00 2001 From: Boris Lavrishchev Date: Mon, 23 Mar 2026 13:13:44 +0300 Subject: [PATCH 2/5] chore: update allowlist in CLA workflow --- .github/workflows/cla.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cla.yaml b/.github/workflows/cla.yaml index 3ee48eb..e79e836 100644 --- a/.github/workflows/cla.yaml +++ b/.github/workflows/cla.yaml @@ -29,6 +29,6 @@ jobs: path-to-document: 'https://github.com/Netcracker/qubership-github-workflows/blob/main/CLA/cla.md' # branch should not be protected branch: 'main' - allowlist: NetcrackerCLPLCI,web-flow,bot* + allowlist: NetcrackerCLPLCI,web-flow,dependabot,remnovatebot,bot* remote-repository-name: cla-storage remote-organization-name: Netcracker From 74c30cb3e162e587776f60f64b640b8b96cae71e Mon Sep 17 00:00:00 2001 From: Boris Lavrishchev Date: Mon, 23 Mar 2026 13:29:56 +0300 Subject: [PATCH 3/5] Update GitHub Actions runner to Ubuntu 22.04 --- .github/workflows/cla.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cla.yaml b/.github/workflows/cla.yaml index e79e836..5a9a2f9 100644 --- a/.github/workflows/cla.yaml +++ b/.github/workflows/cla.yaml @@ -16,7 +16,7 @@ jobs: contents: write pull-requests: write statuses: write - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: "CLA Assistant" if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target' From 5c3c8eee097fc2d78a829621ddbcb8afbd671f8f Mon Sep 17 00:00:00 2001 From: Boris Lavrishchev Date: Mon, 23 Mar 2026 13:35:17 +0300 Subject: [PATCH 4/5] chore: update CLA_ACCESS_TOKEN to GH_ACCESS_TOKEN --- .github/workflows/cla.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cla.yaml b/.github/workflows/cla.yaml index 5a9a2f9..a6532bf 100644 --- a/.github/workflows/cla.yaml +++ b/.github/workflows/cla.yaml @@ -23,7 +23,7 @@ jobs: uses: contributor-assistant/github-action@ca4a40a7d1004f18d9960b404b97e5f30a505a08 #v2.6.1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_ACCESS_TOKEN }} + PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} with: path-to-signatures: 'signatures/version1/cla.json' path-to-document: 'https://github.com/Netcracker/qubership-github-workflows/blob/main/CLA/cla.md' From def7618da630273e6ea36c2f0d21e664eda05ac1 Mon Sep 17 00:00:00 2001 From: Boris Lavrishchev Date: Mon, 23 Mar 2026 13:36:12 +0300 Subject: [PATCH 5/5] chore: update CLA workflow to use ubuntu-latest Updated the GitHub Actions workflow for CLA processing to use the latest Ubuntu version and changed the personal access token secret. --- .github/workflows/cla.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cla.yaml b/.github/workflows/cla.yaml index a6532bf..3ee48eb 100644 --- a/.github/workflows/cla.yaml +++ b/.github/workflows/cla.yaml @@ -16,19 +16,19 @@ jobs: contents: write pull-requests: write statuses: write - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: "CLA Assistant" if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target' uses: contributor-assistant/github-action@ca4a40a7d1004f18d9960b404b97e5f30a505a08 #v2.6.1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} + PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_ACCESS_TOKEN }} with: path-to-signatures: 'signatures/version1/cla.json' path-to-document: 'https://github.com/Netcracker/qubership-github-workflows/blob/main/CLA/cla.md' # branch should not be protected branch: 'main' - allowlist: NetcrackerCLPLCI,web-flow,dependabot,remnovatebot,bot* + allowlist: NetcrackerCLPLCI,web-flow,bot* remote-repository-name: cla-storage remote-organization-name: Netcracker