From 2fcf2c28b8069b422a534ba4be8b76c8de4dd002 Mon Sep 17 00:00:00 2001 From: Pavan <25031267+Pavan-SAP@users.noreply.github.com> Date: Fri, 29 May 2026 15:08:29 +0200 Subject: [PATCH] [Misc] Workflow: action versions updated Update to the latest version. --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/release.yml | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9adfdc0..11bc36f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,9 +18,9 @@ jobs: matrix: node-version: [lts/*, lts/-1] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} - run: npm i -g @sap/cds-dk @@ -35,10 +35,10 @@ jobs: environment: build steps: - name: Check out code for Sonar Analysis - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: lts/* - name: run coverage tests @@ -47,6 +47,6 @@ jobs: npm i npm run test-coverage-lcov - name: SonarCloud Scan - uses: SonarSource/sonarcloud-github-action@master + uses: SonarSource/sonarqube-scan-action@v8 env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 77721a5..84dec6b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,8 +12,8 @@ jobs: runs-on: ubuntu-latest environment: npm steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 with: node-version: 24 registry-url: https://registry.npmjs.org/ @@ -24,10 +24,10 @@ jobs: npm run test - name: get version id: package-version - uses: martinbeentjes/npm-get-version-action@v1.2.3 + uses: martinbeentjes/npm-get-version-action@v1.3.1 - name: parse changelog id: parse-changelog - uses: schwma/parse-changelog-action@v1.0.0 + uses: schwma/parse-changelog-action@v1.2.0 with: version: '${{ steps.package-version.outputs.current-version }}' - name: create a GitHub release