Skip to content

Commit d944c35

Browse files
committed
update versions
1 parent 2264aca commit d944c35

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- 9200:9200
3838

3939
steps:
40-
- uses: actions/checkout@v3
40+
- uses: actions/checkout@v4
4141

4242
- name: Apt update
4343
run: sudo apt-get update -y
@@ -53,7 +53,7 @@ jobs:
5353
virtualenvs-in-project: true
5454

5555
- name: Set up Python
56-
uses: actions/setup-python@v4
56+
uses: actions/setup-python@v5
5757
with:
5858
python-version: "3.10.16"
5959

@@ -120,14 +120,14 @@ jobs:
120120
SECRET_KEY: local_unsafe_key # pragma: allowlist secret
121121

122122
- name: Upload coverage to CodeCov
123-
uses: codecov/codecov-action@v3
123+
uses: codecov/codecov-action@v4
124124
with:
125125
file: ./coverage.xml
126126

127127
javascript-tests:
128128
runs-on: ubuntu-22.04
129129
steps:
130-
- uses: actions/checkout@v3
130+
- uses: actions/checkout@v4
131131

132132
- name: Setup NodeJS
133133
uses: actions/setup-node@v2-beta
@@ -138,7 +138,7 @@ jobs:
138138
id: yarn-cache-dir-path
139139
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
140140

141-
- uses: actions/cache@v3
141+
- uses: actions/cache@v4
142142
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
143143
with:
144144
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
runs-on: ubuntu-22.04
1111
name: Publish Documentation
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- name: Set up Python
15-
uses: actions/setup-python@v4
15+
uses: actions/setup-python@v5
1616
with:
1717
python-version: "3.10"
1818
- name: Install ghp-import

.github/workflows/production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
github.event_name == 'workflow_dispatch' ||
1616
github.event.workflow_run.conclusion == 'success'
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
with:
2020
ref: release
2121
- uses: akhileshns/heroku-deploy@96f4455bfc127bf16feac4b180aae9ec380c5a20

0 commit comments

Comments
 (0)