From eaf89cc355838b37d10532d2c5616e702934490e Mon Sep 17 00:00:00 2001 From: erciccione Date: Fri, 17 Jul 2020 15:14:50 +0200 Subject: [PATCH] workflows: improve performance of github CI - Bump actions/checkout to v2 - Limit number of posts to be built to 10 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e39aeeb0..cb57673b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: ruby: [ '2.4', '2.5', '2.6', '2.7' ] name: Ruby ${{ matrix.ruby }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} @@ -20,4 +20,4 @@ jobs: - name: bundle install run: bundle install --jobs 4 --retry 3 - name: build site - run: bundle exec jekyll build + run: bundle exec jekyll build --limit-posts 10