Skip to content

Commit dc2fe49

Browse files
committed
⬆️(frontend) upgrade some gitHub actions
Some github actions were using outdated versions. This commit upgrades them to use a common versions for all our workflows.
1 parent 2864669 commit dc2fe49

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/impress.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
if: github.event_name == 'pull_request' # Makes sense only for pull requests
2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 0
2525
- name: show
@@ -46,7 +46,7 @@ jobs:
4646
github.event_name == 'pull_request'
4747
steps:
4848
- name: Checkout repository
49-
uses: actions/checkout@v3
49+
uses: actions/checkout@v4
5050
with:
5151
fetch-depth: 50
5252
- name: Check that the CHANGELOG has been modified in the current branch
@@ -56,7 +56,7 @@ jobs:
5656
runs-on: ubuntu-latest
5757
steps:
5858
- name: Checkout repository
59-
uses: actions/checkout@v2
59+
uses: actions/checkout@v4
6060
- name: Check CHANGELOG max line length
6161
run: |
6262
max_line_length=$(cat CHANGELOG.md | grep -Ev "^\[.*\]: https://github.com" | wc -L)
@@ -70,7 +70,7 @@ jobs:
7070
if: github.event_name == 'pull_request'
7171
steps:
7272
- name: Checkout repository
73-
uses: actions/checkout@v2
73+
uses: actions/checkout@v4
7474
- name: Install codespell
7575
run: pip install --user codespell
7676
- name: Check for typos
@@ -92,7 +92,7 @@ jobs:
9292
working-directory: src/backend
9393
steps:
9494
- name: Checkout repository
95-
uses: actions/checkout@v2
95+
uses: actions/checkout@v4
9696
- name: Install Python
9797
uses: actions/setup-python@v5
9898
with:

0 commit comments

Comments
 (0)