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: update actions/checkout to v2 #2715

Merged
merged 2 commits into from
Jan 26, 2022
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
NPM_CONFIG_UNSAFE_PERM: true
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
Expand Down Expand Up @@ -49,14 +49,14 @@ jobs:
browser-tests-stable:
runs-on: ubuntu-latest
container:
image: circleci/node:14-browsers
image: circleci/node:16-browsers
env:
NPM_CONFIG_UNSAFE_PERM: true
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Permission Setup
run: sudo chmod -R 777 /github /__w
- name: Checkout
uses: actions/checkout@v2

- name: restore lerna
uses: actions/cache@v2
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
NPM_CONFIG_UNSAFE_PERM: true
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
Expand Down Expand Up @@ -163,14 +163,14 @@ jobs:
browser-tests-experimental:
runs-on: ubuntu-latest
container:
image: circleci/node:14-browsers
image: circleci/node:16-browsers
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Starting from circleci/node:16 the base image uses Debian 10, the stable git version in the registry is v2.20 which met the bar of actions/checkout@v2 (minimum v2.18).

env:
NPM_CONFIG_UNSAFE_PERM: true
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Permission Setup
run: sudo chmod -R 777 /github /__w
- name: Checkout
uses: actions/checkout@v2

- name: restore lerna
uses: actions/cache@v2
Expand Down