Skip to content

Commit c012437

Browse files
authored
Update install-env and release-docs workflows (#1569)
- Update actions to latest versions - Update Python version to 3.12.3 in release-docs workflow - Increment Poetry installation cached key in install-env workflow
1 parent 969a5c0 commit c012437

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/actions/install-env/action.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ runs:
1414
using: "composite"
1515
steps:
1616
- name: Check out repository
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818

1919
- name: Set up Python
2020
id: set-up-python
21-
uses: actions/setup-python@v4
21+
uses: actions/setup-python@v5
2222
with:
2323
python-version: ${{ inputs.python-version }}
2424

2525
- name: Load cached Poetry installation
26-
uses: actions/cache@v3
26+
uses: actions/cache@v4
2727
with:
2828
path: ~/.local # the path depends on the OS
29-
key: poetry-1 # increment to reset cache
29+
key: poetry-2 # increment to reset cache
3030

3131
- name: Install poetry
3232
uses: snok/install-poetry@v1
@@ -37,7 +37,7 @@ runs:
3737

3838
- name: Load cached virtual env
3939
id: cached-poetry-dependencies
40-
uses: actions/cache@v3
40+
uses: actions/cache@v4
4141
with:
4242
path: .venv
4343
key: venv-${{ runner.os }}-${{ steps.set-up-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}

.github/workflows/release-docs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
ubuntu:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

1515
- name: Build River
1616
uses: ./.github/actions/install-env
1717
with:
18-
python-version: "3.12"
18+
python-version: "3.12.3"
1919

2020
- name: Install extra Ubuntu dependencies
2121
run: sudo apt-get install graphviz pandoc

0 commit comments

Comments
 (0)