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/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version: "*" # latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.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 highlight.js
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Tag is ${{ github.ref }}.
# we have to repeat ourselves here since the environment is not actually updated
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
false

- name: Checkout cdn-release
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: 'highlightjs/cdn-release'
path: 'cdn-release'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/size_report_create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:

steps:
- name: Checkout Base
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.base.ref }}
path: base

- name: Checkout PR
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: pr

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
build-how: ["node", "browser", "browser -n", "cdn :common"]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
Expand Down