From bcdbc93e277d5cc4d503fc87926835b3c44bb6be Mon Sep 17 00:00:00 2001 From: Nikita Prokopov Date: Thu, 4 Jan 2024 00:31:48 +0100 Subject: [PATCH] Enable Github Action on PRs --- .github/workflows/build-deploy.yml | 1 + script/build_utils.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-deploy.yml b/.github/workflows/build-deploy.yml index d3b256a8..2d9872d9 100644 --- a/.github/workflows/build-deploy.yml +++ b/.github/workflows/build-deploy.yml @@ -14,6 +14,7 @@ on: - CHANGELOG.md - LICENSE - README.md + pull-request: jobs: build_linux: diff --git a/script/build_utils.py b/script/build_utils.py index d4bc4046..6c21702c 100644 --- a/script/build_utils.py +++ b/script/build_utils.py @@ -122,7 +122,7 @@ def jar(target: str, *content: List[Tuple[str, str]]) -> str: @functools.lru_cache(maxsize=1) def lombok(): - return fetch_maven('org.projectlombok', 'lombok', '1.18.22') + return fetch_maven('org.projectlombok', 'lombok', '1.18.30') def delombok(dirs: List[str], target: str, classpath: List[str] = [], modulepath: List[str] = []): sources = files(*[dir + "/**/*.java" for dir in dirs])