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/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout 🛬
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Setup Node ⚙️
uses: ./.github/actions/setup-node
- name: Build dist folder 📦
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.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 🛬
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Auto merge 🚀
uses: ahmadnassri/action-dependabot-auto-merge@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛬
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Dependency Review 🕵️
uses: actions/dependency-review-action@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
contents: write
steps:
- name: Checkout 🛬
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
token: ${{ secrets.PAT_GITHUB_TOKEN }}
- name: Setup Node ⚙️
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github-action-template.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 🛬
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Github action template 🤩
id: github-action-nodejs-template
uses: ./
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/handle-generate-dist-command.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 🛬
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ github.event.client_payload.pull_request.head.ref }}
token: ${{ secrets.PAT_GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-dotenv.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 🛬
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Install dotenv ⚙️
run: curl -sSfL https://git.io/JLbXn | sh -s -- -b usr/local/bin v3.3.0
- name: Run dotenv 💅🏻
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-github-action.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 🛬
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Download actionlint ⚙️
id: get_actionlint
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) 1.6.26
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-yaml.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 🛬
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Install yamllint ⚙️
run: pip install yamllint
- name: Lint YAML files 💅🏻
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

steps:
- name: Checkout 🛬
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Setup Node ⚙️
uses: ./.github/actions/setup-node
- name: Build typescript 📦
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
token: ${{ secrets.PAT_GITHUB_TOKEN }}
- name: Checkout 🛬
if: ${{ steps.release.outputs.release_created }}
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Tag major and minor versions 🏷️
if: ${{ steps.release.outputs.release_created }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛬
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Sync labels ☁️
uses: micnncim/action-label-syncer@v1
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/todo-to-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛬
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: TODO to Issue ✅
uses: "alstr/todo-to-issue-action@v4"
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛬
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: 🙊 Run code spell checker to check typos
uses: crate-ci/typos@v1.41.0
Loading