Skip to content

Commit

Permalink
Merge pull request #576 from Handlebars-Net/fix/ci
Browse files Browse the repository at this point in the history
Fix/ci
  • Loading branch information
oformaniuk authored Apr 1, 2024
2 parents 4f699a2 + 985e854 commit 80727a7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ jobs:
dotnet-version: 3.1.x
- uses: actions/setup-java@v4
with:
java-version: '17' # The JDK version to make available on the path.
java-version: '21' # The JDK version to make available on the path.
distribution: 'zulu'
- name: Clean package cache as a temporary workaround for https://github.com/actions/setup-dotnet/issues/155
working-directory: ./source
run: dotnet clean -c Release && dotnet nuget locals all --clear
Expand Down Expand Up @@ -144,4 +145,4 @@ jobs:
steps:
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7 changes: 4 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,10 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
- uses: actions/setup-java@v1
- uses: actions/setup-java@v4
with:
java-version: '17' # The JDK version to make available on the path.
java-version: '21' # The JDK version to make available on the path.
distribution: 'zulu'
- name: Clean package cache as a temporary workaround for https://github.com/actions/setup-dotnet/issues/155
working-directory: ./source
run: dotnet clean -c Release && dotnet nuget locals all --clear
Expand Down Expand Up @@ -136,4 +137,4 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: Benchmark
path: source/Handlebars.Benchmark/BenchmarkDotNet.Artifacts/results/
path: source/Handlebars.Benchmark/BenchmarkDotNet.Artifacts/results/

0 comments on commit 80727a7

Please sign in to comment.