From 590fde94513b153f3bdb8139de97e8bf9c8fa80b Mon Sep 17 00:00:00 2001 From: Daniel Del Rio Figueira Date: Mon, 30 Dec 2024 11:14:05 +0100 Subject: [PATCH] PB-37351: Fixed workflow steps --- .github/workflows/push_pr_main.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push_pr_main.yaml b/.github/workflows/push_pr_main.yaml index e01abb1..5f2a0e1 100644 --- a/.github/workflows/push_pr_main.yaml +++ b/.github/workflows/push_pr_main.yaml @@ -5,7 +5,7 @@ on: push jobs: lint: name: Passbolt CE Rootless-${{ matrix.rootless}} ${{ matrix.test_name }} - runs-on: ruby/setup-ruby@v1 + runs-on: ubuntu-latest strategy: matrix: test_name: @@ -19,12 +19,14 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - name: Set up Ruby ${{ matrix.ruby-version }} + uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1 + with: + ruby-version: "3.4.1" - env: PASSBOLT_FLAVOUR: "ce" ROOTLESS: ${{ matrix.rootless }} TEST_NAME: ${{ matrix.test_name }} - with: - ruby-version: "3.4.1" run: | bundle install bundle exec rake spec:$TEST_NAME