Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: update github actions dependencies #1052

Merged
merged 1 commit into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci_server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci_worker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
4 changes: 2 additions & 2 deletions .github/workflows/deploy_aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading