Skip to content

Commit

Permalink
updated nuget version in pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
sekmenhuseyin committed Jun 7, 2024
1 parent 8eaeeaa commit bc5479d
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: windows-latest
env:
# Dotnet Setup
DOTNET_VERSION: 3.1.401
DOTNET_VERSION: 8.0.0

# Stop wasting time caching packages
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
Expand All @@ -34,11 +34,11 @@ jobs:
steps:
- name: Checkout reference commit
if: ${{ github.event_name == 'pull_request' }}
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Checkout master
if: ${{ github.event_name != 'pull_request' }}
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: master
fetch-depth: 0
Expand All @@ -54,7 +54,7 @@ jobs:
uses: microsoft/setup-msbuild@v1

- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
CONVENTIONAL_GITHUB_RELEASER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -36,7 +36,7 @@ jobs:
echo "branch=$branch_check" >> $GITHUB_ENV
- uses: actions/checkout@v2
- uses: actions/checkout@v4
name: Checkout tag branch
with:
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gitflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: master
fetch-depth: 0
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true

# Dotnet Setup
DOTNET_VERSION: 3.1.401
DOTNET_VERSION: 8.0.0

# Stop wasting time caching packages
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
Expand All @@ -27,13 +27,13 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout commit
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1

- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout commit
uses: actions/checkout@v2
uses: actions/checkout@v4

- uses: actions/download-artifact@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout master
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: master
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout master
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: master
fetch-depth: 0
Expand Down

0 comments on commit bc5479d

Please sign in to comment.