Skip to content

Commit d90d275

Browse files
authored
Merge pull request #208 from yardasol/update-actions
Update actions
2 parents 63dc35b + 10cb50c commit d90d275

File tree

6 files changed

+23
-27
lines changed

6 files changed

+23
-27
lines changed

.github/workflows/auto-labels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
shell: bash -l {0}
1717

1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v4
2020
- name: Remove Priority and Status labels
2121
run: |
2222
id=${{ github.event.issue.number }}
@@ -35,7 +35,7 @@ jobs:
3535
shell: bash -l {0}
3636

3737
steps:
38-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v4
3939
- name: Remove Priority and Status labels
4040
run: |
4141
id=${{ github.event.pull_reqeust.number }}

.github/workflows/cache-dependencies.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,13 @@ jobs:
2727
LIBMESH: no
2828

2929
steps:
30-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v4
3131

3232
## TESTING CACHE ##
3333
# Setup conda
3434
- name: Set up conda
35-
uses: conda-incubator/setup-miniconda@v2
35+
uses: conda-incubator/setup-miniconda@v3
3636
with:
37-
miniforge-variant: Mambaforge # mamba is faster than base conda
3837
miniforge-version: latest
3938
activate-environment: saltproc-env
4039
use-mamba: true
@@ -46,7 +45,7 @@ jobs:
4645
- name: Set cache date
4746
run: echo "DATE=$(date +'%Y%m%d')" >> $GITHUB_ENV
4847

49-
- uses: actions/cache@v3
48+
- uses: actions/cache@v4
5049
id: dependencies-cache
5150
with:
5251
path: |
@@ -72,7 +71,7 @@ jobs:
7271
7372
- name: Download OpenMC
7473
if: steps.dependencies-cache.outputs.cache-hit != 'true'
75-
uses: actions/checkout@v3
74+
uses: actions/checkout@v4
7675
with:
7776
repository: openmc-dev/openmc
7877
path: openmc
@@ -99,13 +98,12 @@ jobs:
9998
shell: bash -l {0}
10099

101100
steps:
102-
- uses: actions/checkout@v3
101+
- uses: actions/checkout@v4
103102

104103
## DOCUMENTATION CACHE ##
105104
- name: Set up conda
106-
uses: conda-incubator/setup-miniconda@v2
105+
uses: conda-incubator/setup-miniconda@v3
107106
with:
108-
miniforge-variant: Mambaforge # mamba is faster than base conda
109107
miniforge-version: latest
110108
activate-environment: saltproc-doc-env
111109
use-mamba: true
@@ -117,7 +115,7 @@ jobs:
117115
- name: Set cache date
118116
run: echo "DATE=$(date +'%Y%m%d')" >> $GITHUB_ENV
119117

120-
- uses: actions/cache@v3
118+
- uses: actions/cache@v4
121119
id: dependencies-cache
122120
with:
123121
path: |
@@ -132,7 +130,7 @@ jobs:
132130

133131
- name: Download OpenMC
134132
if: steps.dependencies-cache.outputs.cache-hit != 'true'
135-
uses: actions/checkout@v3
133+
uses: actions/checkout@v4
136134
with:
137135
repository: openmc-dev/openmc
138136
path: openmc

.github/workflows/deploy-docs.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,14 @@ jobs:
2323
shell: bash -l {0}
2424

2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
with:
2828
fetch-depth: 0
2929

3030
# Setup conda
3131
- name: Set up conda
32-
uses: conda-incubator/setup-miniconda@v2
32+
uses: conda-incubator/setup-miniconda@v3
3333
with:
34-
miniforge-variant: Mambaforge # mamba is faster than base conda
3534
miniforge-version: latest
3635
activate-environment: saltproc-doc-env
3736
use-mamba: true
@@ -43,7 +42,7 @@ jobs:
4342
- name: Set cache date
4443
run: echo "DATE=$(date +'%Y%m%d')" >> $GITHUB_ENV
4544

46-
- uses: actions/cache@v2
45+
- uses: actions/cache@v4
4746
id: dependencies-cache
4847
with:
4948
path: |
@@ -68,7 +67,7 @@ jobs:
6867
cp doc/redirect.html doc/_build/html/index.html
6968
7069
- name: Deploy documentation to gh-pages branch
71-
uses: peaceiris/actions-gh-pages@v3
70+
uses: peaceiris/actions-gh-pages@v4
7271
with:
7372
github_token: ${{ secrets.GITHUB_TOKEN }}
7473
publish_dir: ./doc/_build/html

.github/workflows/populate-releasenotes.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
shell: bash -l {0}
1919

2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222

23-
- name: Set up Python 3.9
24-
uses: actions/setup-python@v2
23+
- name: Set up Python 3.10
24+
uses: actions/setup-python@v5
2525
with:
26-
python-version: 3.9
26+
python-version: 3.10
2727
- name: Add conda to system path
2828
run: |
2929
# $CONDA is an environment variable pointing to the root of the miniconda directory

.github/workflows/test-saltproc.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,12 @@ jobs:
3333
LIBMESH: no
3434

3535
steps:
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v4
3737

3838
# Setup conda
3939
- name: Set up conda
40-
uses: conda-incubator/setup-miniconda@v2
40+
uses: conda-incubator/setup-miniconda@v3
4141
with:
42-
miniforge-variant: Mambaforge # mamba is faster than base conda
4342
miniforge-version: latest
4443
channels: conda-forge
4544
activate-environment: saltproc-env
@@ -52,7 +51,7 @@ jobs:
5251
- name: Set cache date
5352
run: echo "DATE=$(date +'%Y%m%d')" >> $GITHUB_ENV
5453

55-
- uses: actions/cache@v3
54+
- uses: actions/cache@v4
5655
id: dependencies-cache
5756
with:
5857
path: |
@@ -79,7 +78,7 @@ jobs:
7978
8079
- name: Download OpenMC
8180
if: steps.dependencies-cache.outputs.cache-hit != 'true'
82-
uses: actions/checkout@v3
81+
uses: actions/checkout@v4
8382
with:
8483
repository: openmc-dev/openmc
8584
path: openmc

saltproc/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272

7373
NAME = "saltproc"
7474
MAINTAINER = "Oleksandr Yardas"
75-
MAINTAINER_EMAIL = "arfc@googlegroups.com"
75+
MAINTAINER_EMAIL = "olek.yardin@gmail.com"
7676
DESCRIPTION = description
7777
LONG_DESCRIPTION = long_description
7878
URL = "http://github.com/arfc/saltproc"

0 commit comments

Comments
 (0)