Skip to content

Commit

Permalink
Updated all actions for workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
GaProgMan committed Feb 18, 2024
1 parent 294bfec commit 7538b7e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-build-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
## The first thing we need to do is get the latest code out from git, otherwise
## we can't build anything
- name: Checkout the code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

## Next we need to ensure that we have the .NET tooling installed.
- name: Install the .NET SDK
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
## Ensure that we have AT LEAST version 6.0 of .NET, but don't include any
## pre-release builds
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
## The first thing we need to do is get the latest code out from git, otherwise
## we can't build anything
- name: Checkout the code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
## The first thing we need to do is get the latest code out from git, otherwise
## we can't build anything
- name: Checkout the code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
## The first thing we need to do is get the latest code out from git, otherwise
## we can't build anything
- name: Checkout the code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

## Next we need to ensure that we have the .NET tooling installed.
- name: Install the .NET SDK
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
## Ensure that we have AT LEAST version 6.0 of .NET, but don't include any
## pre-release builds
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
## The first thing we need to do is get the latest code out from git, otherwise
## we can't build anything
- name: Checkout the code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down

0 comments on commit 7538b7e

Please sign in to comment.