Skip to content

Commit 6e806c0

Browse files
committed
ci: Update actions to latest versions
1 parent 840d28d commit 6e806c0

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/integrate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v4
1919
with:
2020
# Ensure to have complete history of commits pushed with given push operation
2121
# It's loose and imperfect assumption that no more than 30 commits will be pushed at once

.github/workflows/publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ jobs:
1717
GITHUB_TOKEN: ${{ secrets.USER_GITHUB_TOKEN }}
1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v4
2121

2222
- name: Retrieve node_modules from cache
2323
id: cacheNodeModules
24-
uses: actions/cache@v2
24+
uses: actions/cache@v4
2525
with:
2626
path: |
2727
~/.npm
2828
node_modules
2929
key: npm-v18-${{ runner.os }}-refs/heads/master-${{ hashFiles('package.json') }}
3030

3131
- name: Install Node.js and npm
32-
uses: actions/setup-node@v1
32+
uses: actions/setup-node@v4
3333
with:
3434
node-version: 18.x
3535
registry-url: https://registry.npmjs.org

.github/workflows/validate.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
sls-version: [2, 3]
1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v4
2222
with:
2323
# For commitlint purpose ensure to have complete list of PR commits
2424
# It's loose and imperfect assumption that PR has no more than 30 commits
@@ -33,7 +33,7 @@ jobs:
3333
3434
- name: Retrieve dependencies from cache
3535
id: cacheNpm
36-
uses: actions/cache@v2
36+
uses: actions/cache@v4
3737
with:
3838
path: |
3939
~/.npm
@@ -44,12 +44,12 @@ jobs:
4444
npm-v18-${{ runner.os }}-refs/heads/master-
4545
4646
- name: Set up Python 3.9
47-
uses: actions/setup-python@v2
47+
uses: actions/setup-python@v5
4848
with:
4949
python-version: 3.9
5050

5151
- name: Install Node.js and npm
52-
uses: actions/setup-node@v1
52+
uses: actions/setup-node@v4
5353
with:
5454
node-version: 18.x
5555

0 commit comments

Comments
 (0)