Skip to content

Commit

Permalink
remove cache
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveSkender committed Apr 1, 2024
1 parent ae36a79 commit 0622c7b
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install .NET SDK
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.x"
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/build-test-indicators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,19 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install .NET SDK
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
if: ${{ contains(fromJson('["6.x", "8.x"]'), matrix.dotnet-version) }}
with:
dotnet-version: ${{ matrix.dotnet-version }}
dotnet-quality: "ga"
cache: true

- name: Install .NET SDK (older)
- name: Setup .NET SDK (older)
uses: actions/setup-dotnet@v4
if: ${{ contains(fromJson('["2.0.x", "3.x"]'), matrix.dotnet-version) }}
with:
dotnet-version: ${{ matrix.dotnet-version }}
# older SDK do not support 'ga'
cache: true

- name: Build solution
run: >
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
with:
fetch-depth: 0

- name: Install GitVersion
- name: Setup GitVersion
uses: gittools/actions/gitversion/[email protected]
with:
versionSpec: "5.x"
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
replace: "<PackageReleaseNotes>https://github.com/DaveSkender/Stock.Indicators/releases/tag/${{ steps.compose.outputs.version }}</PackageReleaseNotes>"
regex: false

- name: Install .NET SDK
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.x"
Expand Down Expand Up @@ -127,13 +127,13 @@ jobs:
echo "| Version ID | ${{ needs.build.outputs.version }} |"
} >> $GITHUB_STEP_SUMMARY
- name: Install .NET SDK
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.x"
dotnet-quality: "ga"

- name: Install NuGet tool
- name: Setup NuGet
uses: nuget/setup-nuget@v1
with:
nuget-api-key: ${{ secrets.NUGET_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Checkout source
uses: actions/checkout@v4

- name: Install Ruby
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
working-directory: docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-test-a11y.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Checkout source
uses: actions/checkout@v4

- name: Install Ruby
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
working-directory: docs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs-test-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Checkout source
uses: actions/checkout@v4

- name: Install Ruby
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
working-directory: docs
Expand All @@ -34,7 +34,7 @@ jobs:
pwd
bundle install
- name: Install HTML Proofer
- name: Setup HTML Proofer
run: gem install html-proofer

- name: Replace "data-src"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
fetch-depth: 0

- name: Install GitVersion
- name: Setup GitVersion
uses: gittools/actions/gitversion/[email protected]
with:
versionSpec: "5.x"
Expand All @@ -31,7 +31,7 @@ jobs:
useConfigFile: true
configFilePath: gitversion.yml

- name: Install .NET SDK
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.x"
Expand Down

0 comments on commit 0622c7b

Please sign in to comment.