Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
languages: csharp
queries: +security-and-quality
- name: Git checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: .Net SDK
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Pack Nuget package
run: dotnet pack LineReader/LineReader.csproj -c Release -nologo -o dist
- name: Coveralls
uses: coverallsapp/github-action@v2.3.6
uses: coverallsapp/github-action@v2.3.7
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: all.lcov
Expand All @@ -46,7 +46,7 @@ jobs:
name: dist
path: dist
- name: Upload built packages
uses: svenstaro/upload-release-action@2.11.2
uses: svenstaro/upload-release-action@2.11.3
if: contains(github.ref, 'refs/tags/v')
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down