Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/00-init.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: styfle/[email protected]

- name: ⬇️ Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🔄 Init Cache Default
uses: ./.github/actions/npm-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/00-scan-secrets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ⬇ Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/01-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🔄 Init Cache
uses: ./.github/actions/npm-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/01-get-publish-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
version: ${{ steps.getVersion.outputs.version }}
steps:
- name: ⬇ Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🔄 Init Cache
uses: ./.github/actions/npm-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/01-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🔄 Init Cache
uses: ./.github/actions/npm-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/01-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🔄 Init Cache
uses: ./.github/actions/npm-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/02-deploy-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: ⬇ Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🔄 Init Cache
uses: ./.github/actions/npm-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/03-publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
id-token: write
steps:
- name: ⬇ Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🔄 Init Cache
uses: ./.github/actions/npm-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/99-add-url-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ⬇ Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 📡 Add comment
uses: actions/github-script@v7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/99-auto-update-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: ↔ Create Pull Request
uses: actions/github-script@v7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/99-codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: ⬇ Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🔄 Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/99-dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ⬇ Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🔎 Dependency Review
uses: actions/dependency-review-action@v4
2 changes: 1 addition & 1 deletion .github/workflows/99-self-healing-dependabot-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{github.event.pull_request.head.ref}}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ⬇ Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 📥 Get gh-pages tar
run: wget -q https://github.com/db-ui/core/tarball/gh-pages
Expand Down
Loading