diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 5b3395c..0cf9b98 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -1,6 +1,6 @@ --- name: codecov -on: +'on': push: branches: - master @@ -9,15 +9,17 @@ on: - master jobs: codecov: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: - ruby-version: '2.7' - - run: bundle update + ruby-version: 3.3 + bundler-cache: true + - run: bundle config set --global path "$(pwd)/vendor/bundle" + - run: bundle install - run: bundle exec rake - - uses: codecov/codecov-action@v4 + - uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true diff --git a/.github/workflows/pdd.yml b/.github/workflows/pdd.yml index 78277a2..b883f36 100644 --- a/.github/workflows/pdd.yml +++ b/.github/workflows/pdd.yml @@ -1,6 +1,6 @@ --- name: pdd -on: +'on': push: branches: - master @@ -9,7 +9,7 @@ on: - master jobs: pdd: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - uses: volodya-lombrozo/pdd-action@master diff --git a/.github/workflows/rake.yml b/.github/workflows/rake.yml index dbc09f0..bbcbd84 100644 --- a/.github/workflows/rake.yml +++ b/.github/workflows/rake.yml @@ -1,6 +1,6 @@ --- name: rake -on: +'on': push: branches: - master @@ -20,5 +20,7 @@ jobs: - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - - run: bundle update + bundler-cache: true + - run: bundle config set --global path "$(pwd)/vendor/bundle" + - run: bundle install - run: bundle exec rake