File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -52,12 +52,14 @@ jobs:
5252
5353 - name : Set up environment variables for Pants (Docker) to use GHA Cache
5454 uses : actions/github-script@v8
55+ env :
56+ github-token : ${{ secrets.GITHUB_TOKEN }}
5557 with :
5658 script : |
57- core.exportVariable("ACTIONS_RESULTS_URL", process.env.ACTIONS_CACHE_URL | "");
59+ core.exportVariable("ACTIONS_CACHE_URL", process.env.ACTIONS_CACHE_URL | "");
60+ core.exportVariable("ACTIONS_RESULTS_URL", process.env.ACTIONS_RESULTS_URL | "");
5861 core.exportVariable("ACTIONS_RUNTIME_TOKEN", process.env.ACTIONS_RUNTIME_TOKEN || "");
5962 core.exportVariable("ACTIONS_CACHE_SERVICE_V2", process.env.ACTIONS_CACHE_SERVICE_V2 || "");
60-
6163 - uses : pantsbuild/actions/init-pants@v9
6264 # This action bootstraps pants and manages 2-3 GHA caches.
6365 # See: github.com/pantsbuild/actions/tree/main/init-pants/
8183 # Alternatively you change gha-cache-key to ignore old caches.
8284
8385 - name : Bootstrap Pants
84- run : pants --version
86+ run : |
87+ pants --version
88+ echo "XXXXXX ACTIONS_CACHE_URL=$ACTIONS_CACHE_URL"
89+ echo "XXXXXX ACTIONS_RESULTS_URL=$ACTIONS_RESULTS_URL"
90+ echo "XXXXXX ACTIONS_CACHE_SERVICE_V2=$ACTIONS_CACHE_SERVICE_V2"
8591
8692 - name : Check Pants config files
8793 run : pants tailor --check update-build-files --check '::'
You can’t perform that action at this time.
0 commit comments