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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/increment-version-on-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# on a pull_request_target. But we need to be extra careful not to trigger any script
# that may operate on PR controlled contents like in the case of npm install.
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: main
fetch-depth: 0
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
units:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup node env 📦
uses: actions/setup-node@v4
Expand All @@ -43,7 +43,7 @@ jobs:

steps:
- name: Checkout Action
uses: actions/checkout@v4
uses: actions/checkout@v6

# Should find work item in context provided
# -----------
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:

steps:
- name: Checkout Action
uses: actions/checkout@v4
uses: actions/checkout@v6

# Should find work item in PR context
# -----------
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:

steps:
- name: Checkout Action
uses: actions/checkout@v4
uses: actions/checkout@v6

# Should find work item in release body
# -----------
Expand Down Expand Up @@ -331,7 +331,7 @@ jobs:

steps:
- name: Checkout Action
uses: actions/checkout@v4
uses: actions/checkout@v6

# Should find work item in branch commits or PR context by fully qualified ref
# -----------
Expand Down
Loading