Skip to content

Commit

Permalink
Update Github action versions (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
dk307 authored Jun 5, 2023
1 parent 0a67da0 commit 693fa19
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/buildrelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:

- name: Upload Binaries
if: github.ref != 'refs/heads/main'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Binaries
path: |
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,11 @@ jobs:
- name: Setup NuGet
uses: NuGet/setup-nuget@v1.0.5

- name: Set up JDK 11 for Sonarcloud
uses: actions/setup-java@v1
- name: Set up JDK for Sonarcloud
uses: actions/setup-java@v3
with:
java-version: 1.11
java-version: 17
distribution: 'oracle'

- name: Cache Nuget Packages
uses: actions/cache@v3
Expand Down Expand Up @@ -104,14 +105,14 @@ jobs:

- name: Upload unit tests binaries
id: unit-test-binaries
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
path: .\tests\bin\Debug
name: Test-Files-${{ github.sha }}

- name: Upload binaries
id: test-binaries
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
path: .\plugin\bin\Debug
name: Dll-Files-${{ github.sha }}
Expand Down

0 comments on commit 693fa19

Please sign in to comment.