Skip to content

Commit

Permalink
Merge pull request #2451 from tvdeyen/update-codeclimate-action
Browse files Browse the repository at this point in the history
CI: Use latest version of GitHub actions
  • Loading branch information
tvdeyen authored Mar 31, 2023
2 parents 2f13632 + 2b3e3e8 commit 1ab46ef
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ jobs:
MARIADB_ROOT_PASSWORD: password
options: --health-cmd="mariadb-admin ping" --health-interval=10s --health-timeout=5s --health-retries=5
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Restore apt cache
id: apt-cache
uses: actions/cache@v2.1.3
uses: actions/cache@v3
with:
path: /home/runner/apt/cache
key: ${{ runner.os }}-apt-${{ matrix.database }}
Expand All @@ -84,7 +84,7 @@ jobs:
sudo chown -R runner /home/runner/apt/cache
- name: Restore node modules cache
id: yarn-cache
uses: actions/cache@v2.1.3
uses: actions/cache@v3
with:
path: spec/dummy/node_modules
key: ${{ runner.os }}-yarn-dummy-${{ hashFiles('./package.json') }}
Expand All @@ -94,7 +94,7 @@ jobs:
run: |
bundle exec rake alchemy:spec:prepare
- name: Run tests & publish code coverage
uses: paambaati/codeclimate-action@v2.7.5
uses: paambaati/codeclimate-action@v3.2.0
env:
CC_TEST_REPORTER_ID: bca4349e32f97919210ac8a450b04904b90683fcdd57d65a22c0f5065482bc22
with:
Expand All @@ -109,9 +109,9 @@ jobs:
env:
NODE_ENV: test
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v3
- name: Restore node modules cache
uses: actions/cache@v2.1.3
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('./package.json') }}
Expand Down

0 comments on commit 1ab46ef

Please sign in to comment.