Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
- Update checkout workflows
- Fix typo on workflow names

Signed-off-by: Dan Webb <dan.webb@damacus.io>
  • Loading branch information
damacus committed Nov 14, 2023
1 parent 5b350d9 commit 14c3e93
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
ruby: ["3.1"]
name: Chefstyle on Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
Expand All @@ -40,15 +40,15 @@ jobs:
matrix:
ruby: ["2.7", "3.0", "3.1"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake spec

integration-windows:
name: Windows ${{matrix.suite}} $${{matrix.os}}
name: Windows ${{matrix.suite}} ${{matrix.os}}
runs-on: windows-latest
needs: unit
strategy:
Expand All @@ -57,15 +57,15 @@ jobs:
suite: [default]
os: [ubuntu-20.04]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.1"
bundler-cache: true
- run: bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }}

integration-linux:
name: Linux ${{matrix.suite}} $${{matrix.os}}
name: Linux ${{matrix.suite}} ${{matrix.os}}
runs-on: windows-latest
needs: unit
strategy:
Expand Down

0 comments on commit 14c3e93

Please sign in to comment.