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 requirement to v2.3.4 #1580

Merged
Merged
Show file tree
Hide file tree
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/build-dev.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
# runs-on: ubuntu-latest
#
# steps:
# - uses: actions/checkout@v1
# - uses: actions/checkout@v2.3.4
# - uses: actions/setup-dotnet@v1
# with:
# dotnet-version: '3.1.201'
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2.3.4

- name: Run tests on Windows for all targets
run: dotnet test -c Release
Expand All @@ -38,7 +38,7 @@ jobs:
needs: [test-win] #,test-netcore-linux]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2.3.4

- name: Create and push NuGet package
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Expand Up @@ -23,7 +23,7 @@ jobs:

- name: Checkout repository
id: checkout_repo
uses: actions/checkout@v2
uses: actions/checkout@v2.3.4

- name: Initialize CodeQL
id: init_codeql
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2.3.4
- uses: actions/setup-dotnet@v1.8.0
with:
dotnet-version: '3.1.201'
Expand All @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2.3.4

- name: Vuepress
run: |
Expand Down