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
16 changes: 8 additions & 8 deletions .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
actions: read
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: ./
id: job
- name: Test job name
Expand All @@ -34,7 +34,7 @@ jobs:
actions: read
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: ./
id: job
- name: Test job name
Expand All @@ -55,7 +55,7 @@ jobs:
actions: read
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: ./
id: job
- name: Test job name
Expand All @@ -76,7 +76,7 @@ jobs:
actions: read
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: ./
id: job
- name: Test job name
Expand All @@ -97,7 +97,7 @@ jobs:
actions: read
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: ./
id: job
- name: Test job name
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
- "1.0"
- "2.0"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: ./
id: job
- name: Test job name
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
- 1
- 2
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: ./
id: job
- name: Test job name
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
- 1
- 2
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: ./
id: job
continue-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ runs:
steps:
# In order to determine the job name we'll extract the non-rendered job name from the workflow and then evaulate
# any expressions contained within. Using `action/checkout` requires that we set the path under `$GITHUB_WORSPACE`.
- uses: actions/checkout@v4
- uses: actions/checkout@v5
id: checkout
with:
ref: ${{ github.workflow_sha }}
Expand Down
Loading