File tree 5 files changed +33
-18
lines changed
5 files changed +33
-18
lines changed Original file line number Diff line number Diff line change
1
+ # To get started with Dependabot version updates, you'll need to specify which
2
+ # package ecosystems to update and where the package manifests are located.
3
+ # Please see the documentation for all configuration options:
4
+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
+
6
+ version : 2
7
+ updates :
8
+ - package-ecosystem : " github-actions" # See documentation for possible values
9
+ directory : " .github/workflows" # Location of package manifests
10
+ schedule :
11
+ interval : " monthly"
12
+ groups :
13
+ actions :
14
+ patterns :
15
+ - " *"
Original file line number Diff line number Diff line change 20
20
runs-on : ubuntu-latest
21
21
steps :
22
22
- name : Checkout code
23
- uses : actions/checkout@v3
23
+ uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
24
24
- name : Set up Python
25
- uses : actions/setup-python@v4
25
+ uses : actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
26
26
with :
27
27
python-version : ' 3.x'
28
28
- name : Lint with flake8
38
38
os : [windows-latest, macos-latest, ubuntu-latest]
39
39
steps :
40
40
- name : Checkout code
41
- uses : actions/checkout@v3
41
+ uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
42
42
- name : Set up Python
43
- uses : actions/setup-python@v4
43
+ uses : actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
44
44
with :
45
45
python-version : ' 3.10'
46
46
- name : Install and build
52
52
runs-on : ubuntu-latest
53
53
steps :
54
54
- name : Checkout code
55
- uses : actions/checkout@v3
55
+ uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
56
56
- name : Set up Python
57
- uses : actions/setup-python@v4
57
+ uses : actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
58
58
with :
59
59
python-version : ' 3.11'
60
60
- name : Install and build
Original file line number Diff line number Diff line change 19
19
os : [windows-latest, macos-latest, ubuntu-latest]
20
20
steps :
21
21
- name : Checkout code
22
- uses : actions/checkout@v3
22
+ uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
23
23
- name : Set up Python
24
- uses : actions/setup-python@v4
24
+ uses : actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
25
25
with :
26
26
python-version : ' 3.10'
27
27
- name : Install and build
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ jobs:
10
10
if : github.repository == 'astropy/astrowidgets'
11
11
12
12
steps :
13
- - uses : actions/checkout@v3
13
+ - uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
14
14
with :
15
15
fetch-depth : 0
16
- - uses : actions/setup-python@v4
16
+ - uses : actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
17
17
with :
18
18
python-version : 3.8
19
19
31
31
32
32
- name : Publish distribution 📦 to PyPI
33
33
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
34
- uses : pypa/gh-action-pypi-publish@release/v1
34
+ uses : pypa/gh-action-pypi-publish@897895f1e160c830e369f9779632ebc134688e1b # v1.10.2
35
35
with :
36
36
user : __token__
37
37
password : ${{ secrets.PYPI_TOKEN }}
Original file line number Diff line number Diff line change 2
2
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3
3
version : 2
4
4
5
+ build :
6
+ os : ubuntu-22.04
7
+ apt_packages :
8
+ - graphviz
9
+ tools :
10
+ python : " 3.11"
11
+
5
12
sphinx :
6
13
builder : html
7
14
configuration : docs/conf.py
8
15
fail_on_warning : true
9
16
10
- # Set the version of Python and requirements required to build your docs
11
- build :
12
- os : ubuntu-22.04
13
- tools :
14
- python : " 3.10"
15
-
16
17
python :
17
- system_packages : false
18
18
install :
19
19
- method : pip
20
20
path : .
You can’t perform that action at this time.
0 commit comments