File tree 5 files changed +8
-8
lines changed
5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -65,15 +65,15 @@ jobs:
65
65
echo 'EOF' >> $GITHUB_ENV
66
66
echo "REGEX=$REGEX" >> $GITHUB_ENV
67
67
68
- - uses : actions/github-script@v4
68
+ - uses : actions/github-script@v5
69
69
env :
70
70
BENCH_OUTPUT : ${{env.BENCH_OUTPUT}}
71
71
REGEX : ${{env.REGEX}}
72
72
with :
73
73
script : |
74
74
const ENV_VARS = process.env
75
75
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({
77
77
issue_number: context.issue.number,
78
78
owner: context.repo.owner,
79
79
repo: context.repo.repo,
Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ jobs:
151
151
if : ${{ steps.build.outcome == 'success' }}
152
152
153
153
- name : Publish benchmarks artifact
154
- uses : actions/upload-artifact@master
154
+ uses : actions/upload-artifact@v2
155
155
with :
156
156
name : Benchmarks log
157
157
path : asv_bench/benchmarks.log
Original file line number Diff line number Diff line change 13
13
runs-on : ubuntu-latest
14
14
steps :
15
15
- uses : actions/checkout@v2
16
- - uses : r-lib/actions/pr-fetch@master
16
+ - uses : r-lib/actions/pr-fetch@v2
17
17
with :
18
18
repo-token : ${{ secrets.GITHUB_TOKEN }}
19
19
- name : Cache multiple paths
35
35
git config user.name "$(git log -1 --pretty=format:%an)"
36
36
git config user.email "$(git log -1 --pretty=format:%ae)"
37
37
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
39
39
with :
40
40
repo-token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ jobs:
120
120
if : ${{ env.IS_PYPY == 'false' }} # No pypy3.8 support
121
121
122
122
- name : Setup PyPy
123
- uses : actions/setup-python@v2.3.1
123
+ uses : actions/setup-python@v2
124
124
with :
125
125
python-version : " pypy-3.8"
126
126
if : ${{ env.IS_PYPY == 'true' }}
@@ -146,7 +146,7 @@ jobs:
146
146
run : pushd /tmp && python -c "import pandas; pandas.show_versions();" && popd
147
147
148
148
- name : Publish test results
149
- uses : actions/upload-artifact@master
149
+ uses : actions/upload-artifact@v2
150
150
with :
151
151
name : Test results
152
152
path : test-data.xml
Original file line number Diff line number Diff line change 70
70
ci/run_tests.sh
71
71
72
72
- name : Publish test results
73
- uses : actions/upload-artifact@master
73
+ uses : actions/upload-artifact@v2
74
74
with :
75
75
name : Test results
76
76
path : test-data.xml
You can’t perform that action at this time.
0 commit comments