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

Update actions/checkout action to v4 #2542

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
PERCY_TOKEN: 81bf0245987c87eb4924eae0b085cb60596f2f0f4d4ffe27e171828535aa6812

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: volta-cli/action@v1

- run: yarn install --frozen-lockfile
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: volta-cli/action@v1

- run: yarn install --frozen-lockfile
Expand All @@ -75,7 +75,7 @@ jobs:
python-version: [2.7, 3.6]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# Build Docker images
- run: docker-compose build --build-arg PYTHON_VERSION=${{ matrix.python-version }}
Expand All @@ -88,7 +88,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v2
with:
python-version: 3.6
Expand All @@ -111,7 +111,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
env: production

- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: volta-cli/action@v1

- run: yarn install --frozen-lockfile
Expand Down
Loading