From 9ee1671207d8e65c61cb58d626d97cad76435491 Mon Sep 17 00:00:00 2001 From: benjamincitrin Date: Tue, 6 Jun 2023 12:43:29 -0500 Subject: [PATCH 1/4] set GITHUB_OUTPUT --- src/setup-spark.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/setup-spark.ts b/src/setup-spark.ts index 67924fa..d787964 100644 --- a/src/setup-spark.ts +++ b/src/setup-spark.ts @@ -68,6 +68,7 @@ try { core.exportVariable('PYSPARK_DRIVER_PYTHON', PYSPARK_PYTHON); core.exportVariable('PYTHONPATH', PYTHONPATH); core.exportVariable('SPARK_OPTS', SPARK_OPTS); + core.exportVariable('GITHUB_OUTPUT', GITHUB_OUTPUT); // Add Spark to path core.addPath(`${sparkHome}/bin`); From f9cf886f86cc6a35e406dce1af53177e62c2fe53 Mon Sep 17 00:00:00 2001 From: benjamincitrin Date: Tue, 6 Jun 2023 14:30:38 -0500 Subject: [PATCH 2/4] Updated codeql-action to v2' --- .github/workflows/codeql-analysis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 92efa24..6854533 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -25,7 +25,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v1 + uses: github/codeql-action/init@v2 with: languages: ${{ matrix.language }} # languages: go, javascript, csharp, python, cpp, java @@ -33,7 +33,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v1 + uses: github/codeql-action/autobuild@v2 # ℹī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -47,4 +47,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v2 From d972aabdba292c90a7581c1976a6d0f8ff5eb117 Mon Sep 17 00:00:00 2001 From: benjamincitrin Date: Tue, 6 Jun 2023 14:35:39 -0500 Subject: [PATCH 3/4] Updated actions/checkout to v3 --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/test-setup-spark.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 6854533..db44241 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/test-setup-spark.yml b/.github/workflows/test-setup-spark.yml index 23c9924..aeddedd 100644 --- a/.github/workflows/test-setup-spark.yml +++ b/.github/workflows/test-setup-spark.yml @@ -36,7 +36,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set Node.js 16 uses: actions/setup-node@v3 @@ -75,7 +75,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set Node.js 16 uses: actions/setup-node@v3 From 67c06a9a8ad7a05e63799f847ac512d37384cbae Mon Sep 17 00:00:00 2001 From: benjamincitrin Date: Tue, 6 Jun 2023 14:36:37 -0500 Subject: [PATCH 4/4] Updated actions/checkout to v3 --- .github/workflows/licensed.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/licensed.yml b/.github/workflows/licensed.yml index c498bbd..5266ccd 100644 --- a/.github/workflows/licensed.yml +++ b/.github/workflows/licensed.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest name: Check licenses steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: npm ci - name: Install licensed run: |