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
32 changes: 16 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Lint (oxlint)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version-file: package.json
Expand All @@ -31,7 +31,7 @@ jobs:
name: Validate tsconfig
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version-file: package.json
Expand All @@ -46,7 +46,7 @@ jobs:
name: Validate action.yml
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version-file: package.json
Expand All @@ -61,7 +61,7 @@ jobs:
name: Validate package.json
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version-file: package.json
Expand All @@ -76,7 +76,7 @@ jobs:
name: Lockfile sync
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version-file: package.json
Expand All @@ -96,7 +96,7 @@ jobs:
matrix:
step: [lint, check-links]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version-file: package.json
Expand All @@ -113,7 +113,7 @@ jobs:
name: oxfmt formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version-file: package.json
Expand All @@ -131,7 +131,7 @@ jobs:
EXPECTED_LICENSE_FILENAME: LICENSE
EXPECTED_LICENSE_TYPE: GPL-3.0
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: ruby/setup-ruby@v1
with:
ruby-version: ruby
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
name: Deps license cache freshness
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
submodules: recursive
- uses: ruby/setup-ruby@v1
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
name: Deps license allowlist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
submodules: recursive
- uses: ruby/setup-ruby@v1
Expand All @@ -225,7 +225,7 @@ jobs:
name: Spell check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: "3.14"
Expand All @@ -244,7 +244,7 @@ jobs:
matrix:
operating-system: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version-file: package.json
Expand All @@ -259,7 +259,7 @@ jobs:
name: dist bundle up to date
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version-file: package.json
Expand All @@ -276,7 +276,7 @@ jobs:
name: Integration - defaults
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Run action with defaults
uses: ./
- run: task --version
Expand All @@ -296,7 +296,7 @@ jobs:
- input: 3.50.0
expected: "3.50.0"
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: ./
with:
version: ${{ matrix.version.input }}
Expand All @@ -309,7 +309,7 @@ jobs:
name: Integration - invalid version rejected
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- id: setup-task
continue-on-error: true
uses: ./
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sync-labels-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v6
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
echo "::set-output name=flag::--dry-run"

- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Download configuration file artifacts
uses: actions/download-artifact@v8
Expand Down
Loading
Loading