Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 11, 2024
1 parent 71024d6 commit 5a43987
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,13 +187,13 @@ jobs:
if: ${{ inputs.run_lint == 'true' }}
steps:
- name: Checkout local github actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: everest/everest-ci
ref: ${{ needs.setup-env.outputs.sha_everest_ci }}
path: everest-ci
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: source
- name: Run clang-format
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:
BUILD_KIT_IMAGE: ${{ needs.build-and-push-build-kit.outputs.one_image_tag_long }}
steps:
- name: Checkout local github actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: everest/everest-ci
ref: ${{ needs.setup-env.outputs.sha_everest_ci }}
Expand All @@ -297,15 +297,15 @@ jobs:
echo "branch_name_for_cache=${BRANCH_NAME_FOR_CACHE}" >> "$GITHUB_ENV"
- name: Setup cache
if: ${{ inputs.use_build_cache == 'true' }}
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: cache
key: compile-${{ env.branch_name_for_cache }}-${{ github.sha }}
restore-keys: |
compile-${{ env.branch_name_for_cache }}-
compile-
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: source
- name: Setup run scripts
Expand Down Expand Up @@ -483,7 +483,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@v3
uses: actions/checkout@v4
with:
repository: everest/everest-ci
ref: ${{ needs.setup-env.outputs.sha_everest_ci }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
env-setup:
# Since env variables can't be passed to reusable workflows, we need to pass them as outputs
name: Evaluate force rebuild and set env variables as outputs
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
force_rebuild: ${{ steps.check.outputs.force_rebuild }}
docker_registry: ${{ env.REGISTRY }}
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 @@ -74,7 +74,7 @@ jobs:
name: Check for changes
outputs:
rebuild: ${{ steps.set-outputs.outputs.rebuild }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout Dockerfile
if: ${{ inputs.force_rebuild == false }}
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
build-and-push:
name: Build and push
needs: check
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
image_tags: ${{ steps.meta.outputs.tags }}
one_image_tag_short: ${{ steps.extract-one-tag.outputs.tag_short }}
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@v3.0.0
uses: actions/checkout@v4.2.1
with:
repository: ${{ inputs.target_repo }}
path: gh-pages-repo
Expand Down

0 comments on commit 5a43987

Please sign in to comment.