Skip to content

Commit 2abb804

Browse files
committed
Update GitHub Actions
1 parent bfc21a5 commit 2abb804

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/coster.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,25 @@ jobs:
2323
working-directory: coster
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727
with:
2828
fetch-depth: 0
29-
- uses: actions/setup-dotnet@v4
29+
- uses: actions/setup-dotnet@v5
3030
name: Install .NET 8
3131
with:
3232
dotnet-version: '8.0.x'
3333
dotnet-quality: 'ga'
3434
- name: Build
3535
run: ./build.sh
3636
- name: Upload test results
37-
uses: actions/upload-artifact@v4
37+
uses: actions/upload-artifact@v6
3838
if: always()
3939
with:
4040
name: test-results
4141
path: 'coster/artifacts/test-results/**/*.html'
4242
if-no-files-found: error
4343
- name: Upload coverage report
44-
uses: actions/upload-artifact@v4
44+
uses: actions/upload-artifact@v6
4545
if: always()
4646
with:
4747
name: code-coverage

.github/workflows/parser.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
TEST_RESULTS_PATH:
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v6
2929
with:
3030
fetch-depth: 0
3131
- name: yarn install
@@ -52,21 +52,21 @@ jobs:
5252
env:
5353
JEST_HTML_REPORTER_OUTPUT_PATH: ${{ env.TEST_RESULTS_PATH }}/e2e-all.html
5454
- name: Upload test results
55-
uses: actions/upload-artifact@v4
55+
uses: actions/upload-artifact@v6
5656
if: always()
5757
with:
5858
name: test-results
5959
path: ${{ env.TEST_RESULTS_PATH }}
6060
if-no-files-found: error
6161
- name: Upload unit tests coverage
62-
uses: actions/upload-artifact@v4
62+
uses: actions/upload-artifact@v6
6363
if: always()
6464
with:
6565
name: coverage
6666
path: ${{ github.workspace }}/parser/coverage/lcov-report
6767
if-no-files-found: error
6868
- name: Upload failed e2e logs and screenshots
69-
uses: actions/upload-artifact@v4
69+
uses: actions/upload-artifact@v6
7070
if: ${{ failure() && steps.e2e.conclusion == 'failure' }}
7171
with:
7272
name: failed-e2e-log-screenshot

.github/workflows/security-scanning-csharp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525

2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v6
2929

3030
- name: Install .NET 8
31-
uses: actions/setup-dotnet@v4
31+
uses: actions/setup-dotnet@v5
3232
with:
3333
dotnet-version: '8.0.x'
3434
dotnet-quality: 'ga'

.github/workflows/security-scanning-typescript.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v6
3434

3535
- name: Initialize CodeQL
3636
uses: github/codeql-action/init@v3

0 commit comments

Comments
 (0)