Skip to content

Commit

Permalink
Merge pull request #33 from IT4Change/771edependabot/github_actions/a…
Browse files Browse the repository at this point in the history
…ctions/checkout-4

Bump actions/checkout from 3 to 4
  • Loading branch information
ulfgebhardt authored Dec 27, 2023
2 parents b5fb176 + a6f3109 commit 25b15b8
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/frontend.deploy.chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/frontend.test.build.code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
outputs:
changes: ${{ steps.changes.outputs.frontend-test-build-code }}
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v4

- name: Check for frontend file changes
uses: dorny/paths-filter@v2.11.1
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Frontend | Build
run: npm install && npm run build
4 changes: 2 additions & 2 deletions .github/workflows/frontend.test.build.docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
outputs:
changes: ${{ steps.changes.outputs.frontend-test-build-docs }}
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v4

- name: Check for frontend file changes
uses: dorny/paths-filter@v2.11.1
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Frontend | Build Docs
run: npm install && npm run docs:build
4 changes: 2 additions & 2 deletions .github/workflows/frontend.test.build.storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
outputs:
changes: ${{ steps.changes.outputs.frontend-test-build-storybook }}
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v4

- name: Check for frontend file changes
uses: dorny/paths-filter@v2.11.1
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Frontend | Build Storybook
run: npm install && npm run storybook:build
4 changes: 2 additions & 2 deletions .github/workflows/frontend.test.lint.code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
outputs:
changes: ${{ steps.changes.outputs.frontend-test-lint-code }}
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v4

- name: Check for frontend file changes
uses: dorny/paths-filter@v2.11.1
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Frontend | Lint
run: npm install && npm run test:lint
4 changes: 2 additions & 2 deletions .github/workflows/frontend.test.unit.code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
outputs:
changes: ${{ steps.changes.outputs.frontend-test-unit-code }}
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v4

- name: Check for frontend file changes
uses: dorny/paths-filter@v2.11.1
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Frontend | Unit
run: npm install && npm run test:unit

0 comments on commit 25b15b8

Please sign in to comment.