Skip to content

Commit 73cb735

Browse files
authored
chore: upgrade github CI actions (#18)
1 parent 2f93a4b commit 73cb735

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/maven.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ${{ matrix.os }}
1313
strategy:
1414
matrix:
15-
os: [ubuntu-latest, windows-latest]
15+
os: [ubuntu-latest, windows-2022]
1616
steps:
1717
- uses: actions/checkout@v4
1818
with:
@@ -32,21 +32,21 @@ jobs:
3232
env:
3333
AWS_REGION: us-west-2
3434
run: mvn -ntp -U clean verify
35-
if: matrix.os != 'windows-latest'
35+
if: matrix.os != 'windows-2022'
3636
- name: Build with Maven (Windows)
3737
env:
3838
AWS_REGION: us-west-2
3939
run: mvn -ntp -U clean verify
4040
shell: cmd
41-
if: matrix.os == 'windows-latest'
41+
if: matrix.os == 'windows-2022'
4242
- name: Upload Failed Test Report
43-
uses: actions/upload-artifact@v3
43+
uses: actions/upload-artifact@v4
4444
if: failure()
4545
with:
4646
name: Failed Test Report
4747
path: target/surefire-reports
4848
- name: Upload Coverage
49-
uses: actions/upload-artifact@v3
49+
uses: actions/upload-artifact@v4
5050
if: matrix.os == 'ubuntu-latest'
5151
with:
5252
name: Coverage Report ${{ matrix.os }}

0 commit comments

Comments
 (0)