Skip to content

Commit

Permalink
Update actions/checkout requirement to v2.3.4
Browse files Browse the repository at this point in the history
Updates the requirements on [actions/checkout](https://github.com/actions/checkout) to permit the latest version.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/commits/5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f)

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] committed May 5, 2021
1 parent 22bf25c commit 4e09018
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
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

0 comments on commit 4e09018

Please sign in to comment.