Skip to content

Commit

Permalink
update checkout, setup-node actions (#1451)
Browse files Browse the repository at this point in the history
* Update pxt-buildmain.yml

* Update pxt-buildpr.yml

* Update pxt-buildpush.yml

* bump node version 8->16 to match pxt build
  • Loading branch information
jwunderl authored Jun 22, 2023
1 parent b5b0c8a commit a0bcbbe
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pxt-buildmain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:

strategy:
matrix:
node-version: [8.x]
node-version: [16.x]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@main
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@main
with:
node-version: ${{ matrix.node-version }}
- name: npm install
Expand All @@ -34,4 +34,4 @@ jobs:
NPM_ACCESS_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
CHROME_BIN: chromium-browser
DISPLAY: :99.0
CI: true
CI: true
8 changes: 4 additions & 4 deletions .github/workflows/pxt-buildpr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:

strategy:
matrix:
node-version: [8.x]
node-version: [16.x]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@main
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@main
with:
node-version: ${{ matrix.node-version }}
- name: npm install
Expand All @@ -28,4 +28,4 @@ jobs:
env:
CHROME_BIN: chromium-browser
DISPLAY: :99.0
CI: true
CI: true
8 changes: 4 additions & 4 deletions .github/workflows/pxt-buildpush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:

strategy:
matrix:
node-version: [8.x]
node-version: [16.x]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@main
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@main
with:
node-version: ${{ matrix.node-version }}
- name: npm install
Expand All @@ -34,4 +34,4 @@ jobs:
NPM_ACCESS_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
CHROME_BIN: chromium-browser
DISPLAY: :99.0
CI: true
CI: true

0 comments on commit a0bcbbe

Please sign in to comment.