File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1818 paths :
1919 - ' lib/**'
2020 - ' manifests/**'
21- - ' .github/workflows/pr_acceptance_test .yml'
21+ - ' .github/workflows/acceptance_test .yml'
2222
2323concurrency :
2424 group : ${{ github.ref }}
4848 REF : ${{github.event.pull_request.head.sha}}
4949 REPOSITORY : ${{github.event.pull_request.head.repo.full_name}}
5050 run : |
51- echo ::set-output name= ref:: ${REF}
52- echo ::set-output name= repository:: ${REPOSITORY}
51+ echo " ref= ${REF}" >> $GITHUB_OUTPUT
52+ echo " repository= ${REPOSITORY}" >> $GITHUB_OUTPUT
5353 - name : Print git vars
5454 run : |
5555 echo ${{ steps.git-vars.outputs.ref}}
@@ -103,7 +103,7 @@ jobs:
103103 uses : actions/cache@v4
104104 with :
105105 path : ~/.vagrant.d/boxes
106- key : ${{ runner.os }}-vagrant-${{ hashFiles('./.github/workflows/pr_acceptance_test .yml') }}
106+ key : ${{ runner.os }}-vagrant-${{ hashFiles('./.github/workflows/acceptance_test .yml') }}
107107 restore-keys : |
108108 ${{ runner.os }}-vagrant-
109109 - name : Activate Ruby 2.7
Original file line number Diff line number Diff line change @@ -91,4 +91,6 @@ def matrix_os(provisioner):
9191 print (
9292 f"::error ::Empy collection list. Check the provision.yaml file. { args .path } or pass in valid puppet collections with -c" )
9393
94- print ("::set-output name=matrix::" + json .dumps (matrix ))
94+ import os
95+ with open (os .environ ['GITHUB_OUTPUT' ], 'a' ) as f :
96+ f .write (f"matrix={ json .dumps (matrix )} \n " )
You can’t perform that action at this time.
0 commit comments