diff --git a/.github/workflows/integrate.yml b/.github/workflows/integrate.yml index d2da520e..01fb27a3 100644 --- a/.github/workflows/integrate.yml +++ b/.github/workflows/integrate.yml @@ -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 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 21d7cb71..0e3dc867 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,11 +17,11 @@ 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 @@ -29,7 +29,7 @@ jobs: 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 diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 61935c3e..8ab2b366 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -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 @@ -33,7 +33,7 @@ jobs: - name: Retrieve dependencies from cache id: cacheNpm - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | ~/.npm @@ -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