From 63712a54d53a3b6c69112e8a31e4bd697fdf9da3 Mon Sep 17 00:00:00 2001 From: Thomas von Deyen Date: Thu, 30 Mar 2023 16:45:25 +0200 Subject: [PATCH 1/2] CI: Use latest version of paambaati/codeclimate-action --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8505a41097..bd51c5a92a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: From 2b3e3e87ce4190ff22db7d0a7734f232081c340b Mon Sep 17 00:00:00 2001 From: Thomas von Deyen Date: Fri, 31 Mar 2023 08:06:56 +0200 Subject: [PATCH 2/2] Use latest versions of GH actions --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bd51c5a92a..76b6dd10d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ 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: @@ -62,7 +62,7 @@ jobs: 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 }} @@ -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') }} @@ -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') }}