Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Node.js Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Use Node.js LTS
uses: actions/setup-node@v4
with:
Expand All @@ -39,7 +39,7 @@ jobs:
node: [18.x, 20.x, 21.x, 22.x]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
Expand All @@ -59,7 +59,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v4
with:
Expand All @@ -79,7 +79,7 @@ jobs:
name: Rust CI Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-node@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
if: ${{ steps.release.outputs['rust--release_created'] }}

# Check to see if we need to do any releases and if so check out the repo
- uses: actions/checkout@v4
- uses: actions/checkout@v6
if: ${{ steps.release.outputs.releases_created }}

# Node.js release
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/types-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout momoa
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: momoa

- name: Checkout @eslint/json
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: eslint/json
path: json
Expand Down
Loading