diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60dd676..d2948a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: - ruby: '3.3' coverage: '1' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true - name: Setup Ruby @@ -31,7 +31,7 @@ jobs: - name: Update rubygems run: | gem update --system - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: vendor/bundle key: bundle-use-ruby-${{ matrix.ruby }}-${{ hashFiles('**/Gemfile.lock') }} @@ -48,6 +48,6 @@ jobs: bundle exec rake spec - name: Publish code coverage if: ${{ matrix.coverage == '1' && github.actor != 'dependabot[bot]' }} - uses: paambaati/codeclimate-action@v3.1.1 + uses: paambaati/codeclimate-action@v8 env: CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}