Skip to content

Commit 590fde9

Browse files
committed
PB-37351: Fixed workflow steps
1 parent b8cf87b commit 590fde9

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/push_pr_main.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: push
55
jobs:
66
lint:
77
name: Passbolt CE Rootless-${{ matrix.rootless}} ${{ matrix.test_name }}
8-
runs-on: ruby/setup-ruby@v1
8+
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
1111
test_name:
@@ -19,12 +19,14 @@ jobs:
1919
steps:
2020
- name: Checkout
2121
uses: actions/checkout@v4
22+
- name: Set up Ruby ${{ matrix.ruby-version }}
23+
uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
24+
with:
25+
ruby-version: "3.4.1"
2226
- env:
2327
PASSBOLT_FLAVOUR: "ce"
2428
ROOTLESS: ${{ matrix.rootless }}
2529
TEST_NAME: ${{ matrix.test_name }}
26-
with:
27-
ruby-version: "3.4.1"
2830
run: |
2931
bundle install
3032
bundle exec rake spec:$TEST_NAME

0 commit comments

Comments
 (0)