From 948fd68dbfcc34a0fe3521e83face119bc18e003 Mon Sep 17 00:00:00 2001 From: Masahiro Date: Mon, 20 Jan 2025 02:46:35 +0900 Subject: [PATCH] Update ruby version of CI to 3.4.1 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1da52c42..8d94c221 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: matrix: version: - '2.5.0' - - '3.2.2' + - '3.4.1' steps: - name: Checkout code @@ -56,7 +56,7 @@ jobs: run: echo "VERSION=$(cat lib/splitclient-rb/version.rb | grep VERSION | awk -F "'" '{print $2}')" >> $GITHUB_ENV - name: SonarQube Scan (Push) - if: matrix.version == '3.2.2' && github.event_name == 'push' + if: matrix.version == '3.4.1' && github.event_name == 'push' uses: SonarSource/sonarcloud-github-action@v1.9 env: SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }} @@ -68,7 +68,7 @@ jobs: -Dsonar.projectVersion=${{ env.VERSION }} - name: SonarQube Scan (Pull Request) - if: matrix.version == '3.2.2' && github.event_name == 'pull_request' + if: matrix.version == '3.4.1' && github.event_name == 'pull_request' uses: SonarSource/sonarcloud-github-action@v1.9 env: SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}