From 5851af3353d962051b7bd053716867799b584d67 Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Fri, 26 Jan 2024 11:57:50 -0500 Subject: [PATCH 1/2] Refresh virtual environment on Action specification changing Because the GitHub Action YAML file is currently the only place where this repository pins the CASE version being tested, have any changes to that file trigger a virtual environment rebuild, which locally (to a developer's desktop) re-runs the test. Signed-off-by: Alex Nelson --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 655634f..8abb4e9 100644 --- a/Makefile +++ b/Makefile @@ -58,6 +58,7 @@ all: \ touch $@ .venv.done.log: \ + .github/workflows/ci.yml \ pyproject.toml rm -rf venv $(PYTHON3) -m venv \ From e41635ed47cb285afb8981449a54a6e626ea9243 Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Fri, 26 Jan 2024 11:59:04 -0500 Subject: [PATCH 2/2] Bump case-validation-action and CASE version Signed-off-by: Alex Nelson --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2c34ea3..b92454b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,10 +37,10 @@ jobs: # Ensure that the example output is a valid CASE JSON-LD graph - name: CASE Export Validation - uses: kchason/case-validation-action@v2.8.0 + uses: kchason/case-validation-action@v2.9.0 with: case-path: ./ - case-version: "case-1.2.0" + case-version: "case-1.3.0" extension-filter: "jsonld" report-in-pr: "true" github-token: ${{ secrets.GITHUB_TOKEN }}