Skip to content

Commit

Permalink
Merge pull request #1092 from yaacov/bump-github-action-versions
Browse files Browse the repository at this point in the history
🤖 Bump github action versions
  • Loading branch information
yaacov committed Apr 11, 2024
2 parents 9c6a6a8 + 3a2fabc commit 3846b25
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/on-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
run: ulimit -n 4096

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20

Expand All @@ -39,9 +39,10 @@ jobs:
run: npm run test:coverage

- name: Test coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}

e2e:
name: Run e2e tests
Expand All @@ -51,21 +52,21 @@ jobs:
run: ulimit -n 4096

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run pre e2e test tasks
run: npm run e2e:pre-test

- name: Run cypress
uses: cypress-io/github-action@v5
uses: cypress-io/github-action@v6
with:
wait-on: "http://localhost:30080"
browser: chrome
headed: false
config-file: cypress/cypress.config.cjs

- name: Upload videos
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: cypress-videos
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-push-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
run: ulimit -n 4096

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Log in to Quay.io
uses: docker/login-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-push-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
run: ulimit -n 4096

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Log in to Quay.io
uses: docker/login-action@v3
Expand Down

0 comments on commit 3846b25

Please sign in to comment.