Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add permissions block for lock acquisition #270

Merged
merged 3 commits into from
Jan 14, 2025
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: 6 additions & 2 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: CI Testing

permissions:
contents: write
pull-requests: write

on:
push:
branches:
Expand Down Expand Up @@ -35,7 +39,7 @@ jobs:
run: ./gradlew coverage

- name: Store test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: UnitTestResults
Expand Down Expand Up @@ -151,7 +155,7 @@ jobs:
run: docker compose -f .apiml/docker-compose.yml logs

- name: Store test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: IntegrationTestResults
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class JobFilesIntegrationTest extends AbstractJobsIntegrationTest {
private static Job job;
private static String expectedContentRegexJESMSGLG = ".*J E S 2 J O B L O G.*------ JES2 JOB STATISTICS ------.*3 CARDS READ.*"
+ "- .* SYSOUT PRINT RECORDS.*- 0 SYSOUT PUNCH RECORDS.*"
+ "- 5 SYSOUT SPOOL KBYTES.*- 0.00 MINUTES EXECUTION TIME.*";
+ "- 6 SYSOUT SPOOL KBYTES.*- 0.00 MINUTES EXECUTION TIME.*";

@BeforeClass
public static void submitJob() throws Exception {
Expand Down
Loading