File tree Expand file tree Collapse file tree 4 files changed +20
-2
lines changed Expand file tree Collapse file tree 4 files changed +20
-2
lines changed Original file line number Diff line number Diff line change
1
+
2
+ version : 2
3
+ updates :
4
+ - package-ecosystem : " github-actions"
5
+ directory : " /" # Location of your workflow files
6
+ schedule :
7
+ interval : " weekly" # Options: daily, weekly, monthly
Original file line number Diff line number Diff line change 1
1
on : [status]
2
2
jobs :
3
3
circleci_artifacts_redirector_job :
4
+ permissions :
5
+ contents : read
6
+ checks : write
7
+ pull-requests : write
4
8
runs-on : ubuntu-latest
5
9
name : Run CircleCI artifacts redirector
6
10
steps :
7
11
- name : GitHub Action step
8
- uses : larsoner /circleci-artifacts-redirector-action@master
12
+ uses : scientific-python /circleci-artifacts-redirector-action@7eafdb60666f57706a5525a2f5eb76224dc8779b # v1.1.0
9
13
with :
10
14
repo-token : ${{ secrets.GITHUB_TOKEN }}
11
15
api-token : ${{ secrets.CIRCLECI_TOKEN }}
Original file line number Diff line number Diff line change 25
25
steps :
26
26
- name : Checkout
27
27
uses : actions/checkout@v4
28
+ with :
29
+ persist-credentials : false
28
30
29
31
- name : Initialize CodeQL
30
32
uses : github/codeql-action/init@v3
Original file line number Diff line number Diff line change @@ -5,8 +5,13 @@ on: [push, pull_request]
5
5
jobs :
6
6
build :
7
7
runs-on : ubuntu-latest
8
+ permissions :
9
+ contents : write
10
+
8
11
steps :
9
12
- uses : actions/checkout@v4
13
+ with :
14
+ persist-credentials : false
10
15
- name : Install Python dependencies
11
16
run : pip install -r requirements.txt
12
17
- name : Build
15
20
run : rm ./docs/_build/html/objects.inv
16
21
- name : Publish
17
22
if : ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
18
- uses : peaceiris/actions-gh-pages@v4
23
+ uses : peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0
19
24
with :
20
25
github_token : ${{ secrets.GITHUB_TOKEN }}
21
26
publish_dir : ./docs/_build/html
You can’t perform that action at this time.
0 commit comments