From 823e25b14d3f9d9be0ec3956b27ff3c94d6453b4 Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti <13schishti@gmail.com> Date: Sat, 7 Feb 2026 23:36:03 +0000 Subject: [PATCH] Upgrade GitHub Actions for Node 24 compatibility Signed-off-by: Salman Muin Kayser Chishti <13schishti@gmail.com> --- .github/workflows/auto-update-Dockerfiles.yml | 2 +- .github/workflows/change-file-in-pr.yml | 2 +- .github/workflows/create-release-pr.yml | 6 +++--- .github/workflows/semgrep-analysis.yml | 2 +- .github/workflows/sync-master-dev.yml | 12 ++++++------ .github/workflows/update-Dockerfiles.yml | 2 +- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/auto-update-Dockerfiles.yml b/.github/workflows/auto-update-Dockerfiles.yml index df7492e90..13459ca3d 100644 --- a/.github/workflows/auto-update-Dockerfiles.yml +++ b/.github/workflows/auto-update-Dockerfiles.yml @@ -26,7 +26,7 @@ jobs: steps: # Checks-out the repository under $GITHUB_WORKSPACE - - uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 #v4.2.2 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: ref: 'dev' diff --git a/.github/workflows/change-file-in-pr.yml b/.github/workflows/change-file-in-pr.yml index 24c9477bd..344d78258 100644 --- a/.github/workflows/change-file-in-pr.yml +++ b/.github/workflows/change-file-in-pr.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout PR code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Get List of Changed Files id: changed-files diff --git a/.github/workflows/create-release-pr.yml b/.github/workflows/create-release-pr.yml index 4640b2663..8c7bda099 100644 --- a/.github/workflows/create-release-pr.yml +++ b/.github/workflows/create-release-pr.yml @@ -38,18 +38,18 @@ jobs: parse-json-secrets: true # Checkout a full clone of the repo - name: Checkout - uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 #v4.2.2 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: fetch-depth: "0" token: ${{ env.AWS_SECRET_TOKEN }} # Install .NET9 which is needed for AutoVer - name: Setup .NET 9.0 - uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 #v5.0.1 + uses: actions/setup-dotnet@baa11fbfe1d6520db94683bd5c7a3818018e4309 # v5.1.0 with: dotnet-version: 9.0.x # Install .NET10 which is needed for building the solution - name: Setup .NET 10.0 - uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 #v5.0.1 + uses: actions/setup-dotnet@baa11fbfe1d6520db94683bd5c7a3818018e4309 # v5.1.0 with: dotnet-version: 10.0.x # Install AutoVer to automate versioning and changelog creation diff --git a/.github/workflows/semgrep-analysis.yml b/.github/workflows/semgrep-analysis.yml index 338611ade..c1b9d4484 100644 --- a/.github/workflows/semgrep-analysis.yml +++ b/.github/workflows/semgrep-analysis.yml @@ -25,7 +25,7 @@ jobs: if: (github.actor != 'dependabot[bot]') steps: # Fetch project source - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - run: semgrep ci --sarif > semgrep.sarif env: diff --git a/.github/workflows/sync-master-dev.yml b/.github/workflows/sync-master-dev.yml index 6b86ce28d..f097f9ed3 100644 --- a/.github/workflows/sync-master-dev.yml +++ b/.github/workflows/sync-master-dev.yml @@ -39,19 +39,19 @@ jobs: parse-json-secrets: true # Checkout a full clone of the repo - name: Checkout code - uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 #v4.2.2 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: ref: dev fetch-depth: 0 token: ${{ env.AWS_SECRET_TOKEN }} # Install .NET9 which is needed for AutoVer - name: Setup .NET 9.0 - uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 #v5.0.1 + uses: actions/setup-dotnet@baa11fbfe1d6520db94683bd5c7a3818018e4309 # v5.1.0 with: dotnet-version: 9.0.x # Install .NET10 which is needed for building the solution - name: Setup .NET 10.0 - uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 #v5.0.1 + uses: actions/setup-dotnet@baa11fbfe1d6520db94683bd5c7a3818018e4309 # v5.1.0 with: dotnet-version: 10.0.x # Install AutoVer which is needed to retrieve information about the current release. @@ -116,18 +116,18 @@ jobs: steps: # Checkout a full clone of the repo - name: Checkout code - uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 #v4.2.2 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: ref: releases/next-release fetch-depth: 0 # Install .NET9 which is needed for AutoVer - name: Setup .NET 9.0 - uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 #v5.0.1 + uses: actions/setup-dotnet@baa11fbfe1d6520db94683bd5c7a3818018e4309 # v5.1.0 with: dotnet-version: 9.0.x # Install .NET10 which is needed for building the solution - name: Setup .NET 10.0 - uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 #v5.0.1 + uses: actions/setup-dotnet@baa11fbfe1d6520db94683bd5c7a3818018e4309 # v5.1.0 with: dotnet-version: 10.0.x # Install AutoVer which is needed to retrieve information about the current release. diff --git a/.github/workflows/update-Dockerfiles.yml b/.github/workflows/update-Dockerfiles.yml index d6290d004..4008f66c9 100644 --- a/.github/workflows/update-Dockerfiles.yml +++ b/.github/workflows/update-Dockerfiles.yml @@ -65,7 +65,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 #v4.2.2 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: ref: 'dev'