Skip to content

Commit b188022

Browse files
committed
fix: CI workflow tasks
1 parent 834b4b9 commit b188022

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,22 @@ jobs:
1616
set-version:
1717
runs-on: ubuntu-22.04
1818
container:
19-
image: mcr.microsoft.com/dotnet/sdk:6.0
19+
image: mcr.microsoft.com/dotnet/sdk:10.0
2020
outputs:
2121
semVer: ${{ steps.gitversion.outputs.semVer }}
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424
with:
2525
fetch-depth: 0
2626
- name: set global dir
2727
run: git config --system --add safe.directory "$GITHUB_WORKSPACE"
2828

2929
- name: Install GitVersion
30-
uses: gittools/actions/gitversion/setup@v1
30+
uses: gittools/actions/gitversion/setup@v4
3131
with:
3232
versionSpec: '5.x'
3333
- name: Set SemVer Version
34-
uses: gittools/actions/gitversion/execute@v1
34+
uses: gittools/actions/gitversion/execute@v4
3535
id: gitversion
3636

3737
pr:
@@ -41,7 +41,7 @@ jobs:
4141
REVISION: $GITHUB_SHA
4242
SEMVER: ${{ needs.set-version.outputs.semVer }}
4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v6
4545

4646
- uses: ensono/actions/eirctl-setup@v0.3.1
4747
with:
@@ -63,7 +63,7 @@ jobs:
6363
eirctl run unit:test:run
6464
6565
- name: Publish Test Report
66-
uses: mikepenz/action-junit-report@v5
66+
uses: mikepenz/action-junit-report@v6
6767
if: success() || failure()
6868
with:
6969
report_paths: '.coverage/report-junit.xml'
@@ -72,7 +72,7 @@ jobs:
7272
check_name: aws-cli-auth Unit Tests
7373

7474
- name: Analyze with SonarCloud
75-
uses: SonarSource/sonarqube-scan-action@v5
75+
uses: SonarSource/sonarqube-scan-action@v7
7676
env:
7777
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7878
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

0 commit comments

Comments
 (0)