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/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
auto-merge:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ahmadnassri/action-dependabot-auto-merge@v2
with:
target: minor
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 Repository'
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/handle-create-rc-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 }}
- name: Create release candidate 🐣
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-dockerfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Lint dockerfile
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: hadolint/hadolint-action@v3.1.0
id: hadolint
with:
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 @@ -8,7 +8,7 @@ jobs:
name: Lint dotenv
runs-on: ubuntu-latest
steps:
- 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 @@ -7,7 +7,7 @@ jobs:
actionlint:
runs-on: ubuntu-latest
steps:
- 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 @@ -7,7 +7,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Install yamllint
run: pip install yamllint
- name: Lint YAML files
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout 🛬
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Setup Node ⚙️
uses: ./.github/actions/setup-node
with:
Expand All @@ -33,7 +33,7 @@ jobs:
name: 'build (20.x)'
steps:
- name: Checkout 🛬
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Setup Node ⚙️
uses: ./.github/actions/setup-node
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/package-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
outputs:
package_size: ${{ steps.package-base.outputs.package_size }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.base_ref }}
- name: Get commit short hash
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
outputs:
package_size: ${{ steps.package-head.outputs.package_size }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}
- name: Setup Node ⚙️
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 @@ -9,7 +9,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: micnncim/action-label-syncer@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/todo-to-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- 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.30.2
Loading