Skip to content

Commit

Permalink
Update github action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbabcock committed Mar 27, 2024
1 parent e118cec commit f89f9c0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
matrix:
os: ['ubuntu-latest', 'windows-latest']
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-dotnet@v3
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.*'
- run: dotnet test
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
name: release
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-dotnet@v3
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.*'
- run: dotnet publish -c Release .\OhmGraphite\
Expand All @@ -25,7 +25,7 @@ jobs:
working-directory: OhmGraphite\bin
run: |
echo "ARTIFACT_NAME=$(echo *.zip)" >> $GITHUB_ENV
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: OhmGraphite\bin\*.zip
name: ${{ env.ARTIFACT_NAME }}
Expand Down

0 comments on commit f89f9c0

Please sign in to comment.