From 04224f96bbcc4d67562c1df4ed89eac2cc891b8b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 22 Feb 2024 12:44:57 +0000 Subject: [PATCH] ci: update github actions dependencies --- .github/workflows/ci_server.yml | 6 +++--- .github/workflows/ci_web.yml | 4 ++-- .github/workflows/ci_worker.yml | 6 +++--- .github/workflows/deploy_aws.yml | 4 ++-- .github/workflows/deploy_test.yml | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci_server.yml b/.github/workflows/ci_server.yml index 10c5f5e955..aa526de164 100644 --- a/.github/workflows/ci_server.yml +++ b/.github/workflows/ci_server.yml @@ -39,14 +39,14 @@ jobs: - name: checkout uses: actions/checkout@v4 - name: cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} restore-keys: | ${{ runner.os }}-go- - name: golangci-lint - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v4 with: version: v1.54 working-directory: server @@ -56,7 +56,7 @@ jobs: env: REEARTH_CMS_DB: mongodb://localhost - name: codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: flags: server file: coverage.txt diff --git a/.github/workflows/ci_web.yml b/.github/workflows/ci_web.yml index 0b5760de3d..b97bd93e24 100644 --- a/.github/workflows/ci_web.yml +++ b/.github/workflows/ci_web.yml @@ -32,7 +32,7 @@ jobs: - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -46,7 +46,7 @@ jobs: - name: Test run: yarn run coverage - name: Send coverage report - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: flags: web - name: Check translations diff --git a/.github/workflows/ci_worker.yml b/.github/workflows/ci_worker.yml index a1a464dda1..26ff27904a 100644 --- a/.github/workflows/ci_worker.yml +++ b/.github/workflows/ci_worker.yml @@ -38,14 +38,14 @@ jobs: - name: checkout uses: actions/checkout@v4 - name: cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} restore-keys: | ${{ runner.os }}-go- - name: golangci-lint - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v4 with: version: v1.54 working-directory: worker @@ -55,7 +55,7 @@ jobs: env: REEARTH_CMS_WORKER_DB: mongodb://localhost - name: codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: flags: worker file: coverage.txt diff --git a/.github/workflows/deploy_aws.yml b/.github/workflows/deploy_aws.yml index e21d8f3c85..8d652de574 100644 --- a/.github/workflows/deploy_aws.yml +++ b/.github/workflows/deploy_aws.yml @@ -25,7 +25,7 @@ jobs: - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -39,7 +39,7 @@ jobs: - name: Test run: yarn run coverage - name: Send coverage report - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: flags: web - name: Check translations diff --git a/.github/workflows/deploy_test.yml b/.github/workflows/deploy_test.yml index 76ac618f56..8617881dfe 100644 --- a/.github/workflows/deploy_test.yml +++ b/.github/workflows/deploy_test.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest steps: - name: get latest web artifact - uses: dawidd6/action-download-artifact@v3.0.0 + uses: dawidd6/action-download-artifact@v3.1.2 with: github_token: ${{ secrets.GPT }} workflow: ci_web.yml