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

chore(deps): update actions/checkout action to v4 #71

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-20.04
name: Artifacts
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: cypress-io/github-action@v2
with:
env: lastName=Smith
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Cypress run
uses: cypress-io/github-action@v2
# execute Cypress using a custom test command
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chrome.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: E2E on Chrome
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Cypress run
uses: cypress-io/github-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/custom-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: Tests inside custom image
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Cypress run
uses: cypress-io/github-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- run: node -v

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

# run Cypress tests and record them under the same run
# associated with commit SHA and just give a different group name
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
run: echo "$GITHUB_CONTEXT"

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

- name: Cypress run on ${{ github.event_name }}
uses: cypress-io/github-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/separate-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Cypress install
uses: cypress-io/github-action@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/separate-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
# only install the dependencies without running any tests
- name: Cypress run
uses: cypress-io/github-action@v2
Expand All @@ -32,7 +32,7 @@ jobs:
needs: install-job
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Download built folders ⏬
uses: actions/download-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/serve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Cypress run
uses: cypress-io/github-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/subfolder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Print versions
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- run: node -v

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

- name: Cypress run
uses: cypress-io/github-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/timeouts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Cypress run
uses: cypress-io/github-action@v2
# you can specify individual step timeout too
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
# print Ubuntu version
- run: cat /etc/lsb-release
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Cypress run
uses: cypress-io/github-action@v5
Expand All @@ -22,7 +22,7 @@ jobs:
# print Ubuntu version
- run: cat /etc/lsb-release
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Cypress run
uses: cypress-io/github-action@v5
Expand Down