File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed
Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -65,15 +65,15 @@ jobs:
6565 echo 'EOF' >> $GITHUB_ENV
6666 echo "REGEX=$REGEX" >> $GITHUB_ENV
6767
68- - uses : actions/github-script@v4
68+ - uses : actions/github-script@v5
6969 env :
7070 BENCH_OUTPUT : ${{env.BENCH_OUTPUT}}
7171 REGEX : ${{env.REGEX}}
7272 with :
7373 script : |
7474 const ENV_VARS = process.env
7575 const run_url = `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}`
76- github.issues.createComment({
76+ github.rest. issues.createComment({
7777 issue_number: context.issue.number,
7878 owner: context.repo.owner,
7979 repo: context.repo.repo,
Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ jobs:
151151 if : ${{ steps.build.outcome == 'success' }}
152152
153153 - name : Publish benchmarks artifact
154- uses : actions/upload-artifact@master
154+ uses : actions/upload-artifact@v2
155155 with :
156156 name : Benchmarks log
157157 path : asv_bench/benchmarks.log
Original file line number Diff line number Diff line change 1313 runs-on : ubuntu-latest
1414 steps :
1515 - uses : actions/checkout@v2
16- - uses : r-lib/actions/pr-fetch@master
16+ - uses : r-lib/actions/pr-fetch@v2
1717 with :
1818 repo-token : ${{ secrets.GITHUB_TOKEN }}
1919 - name : Cache multiple paths
3535 git config user.name "$(git log -1 --pretty=format:%an)"
3636 git config user.email "$(git log -1 --pretty=format:%ae)"
3737 git commit -a -m 'Fixes from pre-commit [automated commit]' || echo "No changes to commit"
38- - uses : r-lib/actions/pr-push@master
38+ - uses : r-lib/actions/pr-push@v2
3939 with :
4040 repo-token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ jobs:
122122 if : ${{ env.IS_PYPY == 'false' }} # No pypy3.8 support
123123
124124 - name : Setup PyPy
125- uses : actions/setup-python@v2.3.1
125+ uses : actions/setup-python@v2
126126 with :
127127 python-version : " pypy-3.8"
128128 if : ${{ env.IS_PYPY == 'true' }}
@@ -148,7 +148,7 @@ jobs:
148148 run : pushd /tmp && python -c "import pandas; pandas.show_versions();" && popd
149149
150150 - name : Publish test results
151- uses : actions/upload-artifact@master
151+ uses : actions/upload-artifact@v2
152152 with :
153153 name : Test results
154154 path : test-data.xml
Original file line number Diff line number Diff line change 7979 ci/run_tests.sh
8080
8181 - name : Publish test results
82- uses : actions/upload-artifact@master
82+ uses : actions/upload-artifact@v2
8383 with :
8484 name : Test results
8585 path : test-data.xml
You can’t perform that action at this time.
0 commit comments