9191
9292 steps :
9393 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
94- - uses : actions/checkout@v2
94+ - uses : actions/checkout@v3.5.2
9595
9696 # Read source file
9797 - name : Read source file
@@ -111,7 +111,7 @@ jobs:
111111 # Cancellation will have no immediate effect!!!
112112 - name : Cancel build if version not found
113113 if : ${{ steps.regex.outputs.match == '' }}
114- uses : andymckay/cancel-action@0.2
114+ uses : andymckay/cancel-action@0.3
115115 # Execute sleep if cancellation was triggered
116116 - name : Sleep if build was cancelled
117117 if : ${{ steps.regex.outputs.match == '' }}
@@ -122,7 +122,7 @@ jobs:
122122 # assigned by Github; only if you tag a release, this value will be 'tag'
123123 - name : Cancel build if Github reference is not equal to tag
124124 if : ${{ github.ref_type != 'tag' }}
125- uses : andymckay/cancel-action@0.2
125+ uses : andymckay/cancel-action@0.3
126126 # Execute sleep if cancellation was triggered
127127 - name : Sleep if build was cancelled
128128 if : ${{ github.ref_type != 'tag' }}
@@ -132,7 +132,7 @@ jobs:
132132 # Cancel the work flow if assessment is not true
133133 - name : Cancel build if Github refname is not equal to Python version
134134 if : ${{ github.ref_name != steps.regex.outputs.group1 }}
135- uses : andymckay/cancel-action@0.2
135+ uses : andymckay/cancel-action@0.3
136136 # Execute sleep if cancellation was triggered
137137 - name : Sleep if build was cancelled
138138 if : ${{ github.ref_name != steps.regex.outputs.group1 }}
@@ -158,7 +158,7 @@ jobs:
158158
159159 steps :
160160
161- - uses : actions/checkout@v2
161+ - uses : actions/checkout@v3.5.2
162162 # Set up Python environment
163163 - name : Set up Python
164164 uses : actions/setup-python@v2
0 commit comments