Skip to content

Commit

Permalink
build(deps-dev): bump actions from 2 to 4 in /github/workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
derevnjuk committed Sep 10, 2024
1 parent 41a41f3 commit 2fff989
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/auto-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -30,7 +30,7 @@ jobs:
target: ['lint', 'format', 'build', 'test', 'e2e']
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -43,7 +43,7 @@ jobs:

- name: Execute e2e npm script
if: ${{ matrix.target == 'e2e' }}
uses: cypress-io/github-action@v5
uses: cypress-io/github-action@v6
timeout-minutes: 10
with:
wait-on: 'http://localhost:8080/'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/composite/npm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ runs:
using: 'composite'
steps:
- name: Set Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: 'npm'
registry-url: ${{ inputs.registry }}
scope: ${{ inputs.scope }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coverage.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
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -26,7 +26,7 @@ jobs:
run: npm run test:cov

- name: Send reports to Codeclimate
uses: paambaati/codeclimate-action@v3.0.0
uses: paambaati/codeclimate-action@v9.0.0
if: ${{ hashFiles('coverage/lcov.info') }}
env:
CC_TEST_REPORTER_ID: dcb68bef247848ff70b9c592638236b22745fce5cd5b6a96192c5bf9521e45ee
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
install-deps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ env.TARGET_REF }}
token: ${{ secrets.GPR_TOKEN }}
Expand All @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
needs: install-deps
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ env.TARGET_REF }}
token: ${{ secrets.GPR_TOKEN }}
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Build package
run: npm run build

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: build
path: |
Expand All @@ -50,12 +50,12 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ env.TARGET_REF }}
token: ${{ secrets.GPR_TOKEN }}

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: build

Expand All @@ -71,12 +71,12 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ env.TARGET_REF }}
token: ${{ secrets.GPR_TOKEN }}

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: build

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.GPR_TOKEN }}

Expand Down

0 comments on commit 2fff989

Please sign in to comment.