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/delete-drafts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: arc-runners-small
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
steps:
- name: Checkout base branch for pull_request_target
if: github.event_name == 'pull_request_target'
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.base.ref }}

- name: Checkout current ref for push and workflow_dispatch
if: github.event_name != 'pull_request_target'
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Configure git identity
if: github.event_name == 'pull_request_target'
Expand All @@ -43,7 +43,7 @@ jobs:
git merge --no-ff FETCH_HEAD || (echo "Merge conflict detected" && exit 1)

- name: Set up Node.js
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: "22"

Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
needs: validate # Depends on the 'validate' job succeeding
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v6
Expand All @@ -102,14 +102,14 @@ jobs:
steps:
- name: Checkout base branch for pull_request_target
if: github.event_name == 'pull_request_target'
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.base.ref }}
fetch-depth: 0

- name: Checkout current ref for push and workflow_dispatch
if: github.event_name != 'pull_request_target'
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down