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 @@ -122,7 +122,7 @@ jobs:
122
122
if : ${{ env.IS_PYPY == 'false' }} # No pypy3.8 support
123
123
124
124
- name : Setup PyPy
125
- uses : actions/setup-python@v2.3.1
125
+ uses : actions/setup-python@v2
126
126
with :
127
127
python-version : " pypy-3.8"
128
128
if : ${{ env.IS_PYPY == 'true' }}
@@ -148,7 +148,7 @@ jobs:
148
148
run : pushd /tmp && python -c "import pandas; pandas.show_versions();" && popd
149
149
150
150
- name : Publish test results
151
- uses : actions/upload-artifact@master
151
+ uses : actions/upload-artifact@v2
152
152
with :
153
153
name : Test results
154
154
path : test-data.xml
Original file line number Diff line number Diff line change 79
79
ci/run_tests.sh
80
80
81
81
- name : Publish test results
82
- uses : actions/upload-artifact@master
82
+ uses : actions/upload-artifact@v2
83
83
with :
84
84
name : Test results
85
85
path : test-data.xml
You can’t perform that action at this time.
0 commit comments