Skip to content
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/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:

- name: Checkout from PR branch
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Installing node_modules
run: npm install
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/vstest-action-pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout from PR branch
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}

#Using 12.x version as an example
- name: Set Node.js 12.x for GitHub Action
uses: actions/setup-node@v1
#Using 16.x version as an example
- name: Set Node.js 16.x for GitHub Action
uses: actions/setup-node@v3
with:
node-version: 12.x
node-version: 16.x

- name: installing node_modules
run: npm install
Expand All @@ -34,7 +34,7 @@ jobs:

# include any workflow/action specific dependencies to execute Functional Tests
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.102

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,5 @@ inputs:
Maximum 90 days unless changed from the repository settings page.

runs:
using: "node12"
using: "node16"
main: "dist/index.js"