Skip to content

Commit

Permalink
Merge pull request #297 from OntimizeWeb/sync/main-to-develop
Browse files Browse the repository at this point in the history
sync/main-to-develop
  • Loading branch information
daniel-grana committed Apr 17, 2024
2 parents 50dc980 + 6ffef6e commit 00eadc9
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-ci.yml
Expand Up @@ -13,18 +13,18 @@ jobs:

steps:
- name: 'Checkout code'
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 'Cache node modules'
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Node 18.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.10.0

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-release.yml
Expand Up @@ -30,21 +30,21 @@ jobs:
echo "BASELINE_BRANCH=${{ github.event.inputs.BASELINE || github.ref }}" >> $GITHUB_ENV
- name: Checkout merge commit
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ env.BASELINE_BRANCH }}
fetch-depth: 0

- name: 'Cache node modules'
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Node 18.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.10.0
registry-url: ${{ env.NPM_REGISTRY }}
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
CI: true

- name: GitHub Release / Create release
uses: ncipollo/release-action@2792aea87063cfd0d27953ac38e3ab45afacc154
uses: ncipollo/release-action@2c591bcc8ecdcd2db72b97d6147f871fcd833ba5
with:
commit: ${{ env.BASELINE_BRANCH }}
tag: ${{ steps.project.outputs.version }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-snapshot.yml
Expand Up @@ -9,18 +9,18 @@ jobs:

steps:
- name: "Checkout code"
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: "Cache node modules"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Node 18.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.10.0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prepare-release.yml
Expand Up @@ -43,13 +43,13 @@ jobs:
echo "isMinor=$isMinor" >> $GITHUB_OUTPUT
- name: Checkout merge commit
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ env.BASELINE_BRANCH }}
fetch-depth: 0

- name: Node 18.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.10.0
registry-url: ${{ env.NPM_REGISTRY }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sonar.yml
Expand Up @@ -12,20 +12,20 @@ jobs:
name: SonarCloud
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

- name: 'Cache node modules'
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Node 18.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.10.0

Expand Down

0 comments on commit 00eadc9

Please sign in to comment.