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

fix(ci): action updated for Python 3 #12936

Merged
merged 1 commit into from
Jun 8, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/nms-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
cd ${MAGMA_ROOT}/nms
# Extract the specified flow version from the .flowconfig
yarn add --dev -W flow-bin@$(x=$(grep "\[version\]" .flowconfig -A 1 | tail -n 1); echo ${x:1})
- uses: borales/actions-yarn@v2.3.0
- uses: borales/actions-yarn@v3.0.0
with:
cmd: install # will run `yarn install` command
- name: flow typecheck
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
MAGMA_ROOT: "${{ github.workspace }}"
steps:
- uses: actions/checkout@v2
- uses: borales/actions-yarn@v2.3.0
- uses: borales/actions-yarn@v3.0.0
with:
cmd: install # will run `yarn install` command
- name: run yarn test
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
sudo apt-get update -y
sudo apt-get install -y google-chrome-stable libxss1 --no-install-recommends
sudo rm -rf /var/lib/apt/lists/*
- uses: borales/actions-yarn@v2.3.0
- uses: borales/actions-yarn@v3.0.0
with:
cmd: install # will run `yarn install` command
- name: run e2e_test_setup.sh
Expand Down