Skip to content

Commit 09cbfb4

Browse files
committed
Updated github action versions
1 parent 6693fc1 commit 09cbfb4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/playwright-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
steps:
1717
# Step 1: Check out the repository code
1818
- name: Checkout repository
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020

2121
# Step 2: Set up JDK 17 (adjust if you're using a different version)
2222
- name: Set up JDK 17
23-
uses: actions/setup-java@v3
23+
uses: actions/setup-java@v4
2424
with:
2525
java-version: '17'
2626
distribution: 'adopt'

src/test/java/com/serenitydojo/playwright/toolshop/contact/ContactFormTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ void recordTrace(TestInfo testInfo, BrowserContext context) {
5353
String traceName = testInfo.getDisplayName().replace(" ","-").toLowerCase();
5454
context.tracing().stop(
5555
new Tracing.StopOptions()
56-
.setPath(Paths.get("trace-" + traceName + ".zip"))
56+
.setPath(Paths.get("target/trace-" + traceName + ".zip"))
5757
);
5858
}
5959

0 commit comments

Comments
 (0)