Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:
name: Release

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x

Expand All @@ -54,13 +54,13 @@ jobs:

# Git Version
- name: GitVersion - Setup
uses: gittools/actions/gitversion/setup@v4.1.0
uses: gittools/actions/gitversion/setup@v4.2.0
with:
versionSpec: "6.3.x"

- name: GitVersion - Determine
id: gitversion
uses: gittools/actions/gitversion/execute@v4.1.0
uses: gittools/actions/gitversion/execute@v4.2.0

# Pack and publish
- name: Pack
Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
name: Setup
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Get BC DevTools
id: get-bc-devtools
Expand All @@ -53,10 +53,10 @@ jobs:
runs-on: ubuntu-latest
name: Build
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x

Expand Down Expand Up @@ -168,10 +168,10 @@ jobs:
fail-fast: false
name: Test v${{ matrix.version }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x

Expand All @@ -186,7 +186,7 @@ jobs:
# ALCops.ApplicationCop
- name: Download ALCops.ApplicationCop biniaries
continue-on-error: true
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: ALCops.ApplicationCop
path: ./src/ALCops.ApplicationCop/bin/Release/
Expand All @@ -209,7 +209,7 @@ jobs:
# ALCops.DocumentationCop
- name: Download ALCops.DocumentationCop biniaries
continue-on-error: true
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: ALCops.DocumentationCop
path: ./src/ALCops.DocumentationCop/bin/Release/
Expand All @@ -232,7 +232,7 @@ jobs:
# ALCops.FormattingCop
- name: Download ALCops.FormattingCop biniaries
continue-on-error: true
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: ALCops.FormattingCop
path: ./src/ALCops.FormattingCop/bin/Release/
Expand All @@ -255,7 +255,7 @@ jobs:
# ALCops.LinterCop
- name: Download ALCops.LinterCop biniaries
continue-on-error: true
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: ALCops.LinterCop
path: ./src/ALCops.LinterCop/bin/Release/
Expand All @@ -278,7 +278,7 @@ jobs:
# ALCops.PlatformCop
- name: Download ALCops.PlatformCop biniaries
continue-on-error: true
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: ALCops.PlatformCop
path: ./src/ALCops.PlatformCop/bin/Release/
Expand All @@ -301,7 +301,7 @@ jobs:
# ALCops.TestAutomationCop
- name: Download ALCops.TestAutomationCop biniaries
continue-on-error: true
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: ALCops.TestAutomationCop
path: ./src/ALCops.TestAutomationCop/bin/Release/
Expand Down Expand Up @@ -349,10 +349,10 @@ jobs:
checks: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Download all test artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
pattern: test-*
merge-multiple: true
Expand Down
Loading