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
14 changes: 7 additions & 7 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,13 +199,13 @@ jobs:
if: ${{ inputs.run_lint == 'true' }}
steps:
- name: Checkout local github actions
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: everest/everest-ci
ref: ${{ needs.setup-env.outputs.sha_everest_ci }}
path: everest-ci
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: source
- name: Run clang-format
Expand Down Expand Up @@ -302,7 +302,7 @@ jobs:
build_kit_image_tag: ${{ steps.set-outputs.outputs.tag }}
steps:
- name: Checkout Dockerfile
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: ${{ github.repository }}
path: source
Expand Down Expand Up @@ -375,7 +375,7 @@ jobs:
fi
ssh-add ~/.ssh/id_ed25519
- name: Checkout local github actions
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: everest/everest-ci
ref: ${{ needs.setup-env.outputs.sha_everest_ci }}
Expand All @@ -395,7 +395,7 @@ jobs:
compile-${{ env.branch_name_for_cache }}-
compile-
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: source
- name: Setup run scripts
Expand Down Expand Up @@ -535,7 +535,7 @@ jobs:
name: wheels
path: wheels
- name: Checkout repository
uses: actions/checkout@v4.2.2
uses: actions/checkout@v5.0.0
with:
path: source
- name: Setup run scripts
Expand Down Expand Up @@ -592,7 +592,7 @@ jobs:
if: ${{ inputs.run_coverage && inputs.do_not_run_coverage_badge_creation == 'false' && inputs.run_coverage == 'true' && github.event_name == 'push' && github.ref == 'refs/heads/main' }}
steps:
- name: Checkout local github actions
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: everest/everest-ci
ref: ${{ needs.setup-env.outputs.sha_everest_ci }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-single-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
steps:
- name: Checkout Dockerfile
if: ${{ inputs.force_rebuild == false }}
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: ${{ github.repository }}
path: source
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
one_image_tag_long: ${{ steps.extract-one-tag.outputs.tag_long }}
steps:
- name: Checkout Dockerfile
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: ${{ github.repository }}
path: source
Expand Down
2 changes: 1 addition & 1 deletion github-actions/deploy-ci-artifact/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ runs:
git config --global user.email "[email protected]"
git config --global user.name "Github Service Account"
- name: Checkout target repository
uses: actions/checkout@v4.2.2
uses: actions/checkout@v5.0.0
with:
repository: ${{ inputs.target_repo }}
path: gh-pages-repo
Expand Down
2 changes: 1 addition & 1 deletion github-actions/deploy-doxygen-docs/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ runs:
git config --global user.email "[email protected]"
git config --global user.name "Github Service Account"
- name: Checkout target repository
uses: actions/checkout@v4.2.2
uses: actions/checkout@v5.0.0
with:
repository: ${{ inputs.target_repo }}
path: gh-pages-repo
Expand Down
Loading