Skip to content

Commit

Permalink
Update GitHub Actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 14, 2023
1 parent ce2f061 commit 7998d96
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Parse Docs
uses: nikeee/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Check Out Code
- name: Setup .NET
uses: actions/setup-dotnet@v3
Expand All @@ -36,7 +36,7 @@ jobs:
/p:CoverletOutputFormat=opencover \
/p:CoverletOutput=/home/runner/work/AeroSharp/AeroSharp/ \
- name: Publish Code Coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
files: /home/runner/work/AeroSharp/AeroSharp/coverage.net7.0.opencover.xml,/home/runner/work/AeroSharp/AeroSharp/coverage.net6.0.opencover.xml
fail_ci_if_error: true
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Lint Renovate config
uses: suzuki-shunsuke/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: "Publish Release"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Check Out Code
- name: Setup .NET
uses: actions/setup-dotnet@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: "Publish Preview"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Check Out Code
- name: Setup .NET
uses: actions/setup-dotnet@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Check Out Code
- name: Setup .NET
uses: actions/setup-dotnet@v3
Expand All @@ -34,7 +34,7 @@ jobs:
/p:CoverletOutputFormat=opencover \
/p:CoverletOutput=/home/runner/work/AeroSharp/AeroSharp/ \
- name: Publish Code Coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
files: /home/runner/work/AeroSharp/AeroSharp/coverage.net7.0.opencover.xml,/home/runner/work/AeroSharp/AeroSharp/coverage.net6.0.opencover.xml
fail_ci_if_error: true

0 comments on commit 7998d96

Please sign in to comment.