Skip to content

Commit

Permalink
ci: Update actions to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pgrzesik committed Apr 7, 2024
1 parent 840d28d commit 6e806c0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
# Ensure to have complete history of commits pushed with given push operation
# It's loose and imperfect assumption that no more than 30 commits will be pushed at once
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ jobs:
GITHUB_TOKEN: ${{ secrets.USER_GITHUB_TOKEN }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Retrieve node_modules from cache
id: cacheNodeModules
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.npm
node_modules
key: npm-v18-${{ runner.os }}-refs/heads/master-${{ hashFiles('package.json') }}

- name: Install Node.js and npm
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 18.x
registry-url: https://registry.npmjs.org
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
sls-version: [2, 3]
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
# For commitlint purpose ensure to have complete list of PR commits
# It's loose and imperfect assumption that PR has no more than 30 commits
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Retrieve dependencies from cache
id: cacheNpm
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.npm
Expand All @@ -44,12 +44,12 @@ jobs:
npm-v18-${{ runner.os }}-refs/heads/master-
- name: Set up Python 3.9
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.9

- name: Install Node.js and npm
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 18.x

Expand Down

0 comments on commit 6e806c0

Please sign in to comment.