Skip to content
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/build-pulse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ jobs:
if: github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' || github.event.workflow_run.conclusion == 'failure'
steps:
- name: Check out lotus
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: lotus
ref: ${{ github.event.inputs.head_commit_id || github.event.workflow_run.head_commit.id }}
- name: Check out buildpulse-action
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: buildpulse/buildpulse-action
path: buildpulse-action
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: 'recursive'
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/builtin-actor-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Release Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-go@v5
with:
go-version: 1.23
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
outputs:
skip_checks: ${{ steps.changes.outputs.nonMarkdownFiles == 'false' }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- id: changes
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
with:
Expand All @@ -40,7 +40,7 @@ jobs:
if: ${{ needs.pre-check.outputs.skip_checks != 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: 'recursive'
fetch-depth: 0
Expand All @@ -57,7 +57,7 @@ jobs:
if: ${{ needs.pre-check.outputs.skip_checks != 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: 'recursive'
fetch-depth: 0
Expand All @@ -71,7 +71,7 @@ jobs:
if: ${{ needs.pre-check.outputs.skip_checks != 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: 'recursive'
fetch-depth: 0
Expand All @@ -84,7 +84,7 @@ jobs:
if: ${{ needs.pre-check.outputs.skip_checks != 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: 'recursive'
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-release-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
name: Create Release Issue
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: ./.github/actions/install-go
- env:
GITHUB_TOKEN: ${{ github.token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
IGNORE_PATTERN: 'dependency-check-ignore:\s'

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
name: Check out the repository
with:
submodules: 'recursive'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
fi
fi
echo "channel=$channel" | tee -a $GITHUB_OUTPUT
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: 'recursive'
fetch-depth: 0
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
projects: ${{ steps.projects.outputs.projects }}
steps:
- name: Check out lotus
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
ref: ${{ github.event.inputs.ref }}
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
xargs -I {} -0 echo "config={}" |
tee -a $GITHUB_OUTPUT
- name: Check out lotus
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'recursive'
fetch-depth: 0
Expand All @@ -97,7 +97,7 @@ jobs:
- name: Install Go
uses: ./.github/actions/install-go
- if: github.event.inputs.ref
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'recursive'
fetch-depth: 0
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
xargs -I {} -0 echo "config={}" |
tee -a $GITHUB_OUTPUT
- name: Check out lotus
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'recursive'
fetch-depth: 0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/reusable-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
outputs:
test_group_execution_contexts: ${{ steps.list_test_group_execution_contexts.outputs.test_group_execution_contexts }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: 'recursive'
fetch-depth: 0
Expand All @@ -40,7 +40,7 @@ jobs:
# We need to cache for each architecture we support: x86_64 and arm64
runner: [ubuntu-latest, ubuntu-24.04-arm]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: 'recursive'
fetch-depth: 0
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
matrix:
include: ${{ fromJson(needs.discover.outputs.test_group_execution_contexts) }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: 'recursive'
fetch-depth: 0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
outputs:
test_group_execution_contexts: ${{ steps.list_test_group_execution_contexts.outputs.test_group_execution_contexts }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: 'recursive'
fetch-depth: 0
Expand All @@ -45,7 +45,7 @@ jobs:
# We need to cache for each architecture we support: x86_64 and arm64
runner: [ubuntu-latest, ubuntu-24.04-arm]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: 'recursive'
fetch-depth: 0
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
matrix:
include: ${{ fromJson(needs.discover.outputs.test_group_execution_contexts) }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: 'recursive'
fetch-depth: 0
Expand Down
Loading