From 5a43987420163fe22b153ccd9c6e060e7d074041 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 11 Oct 2024 12:46:19 +0000 Subject: [PATCH] Update workflow --- .github/workflows/continuous_integration.yml | 12 ++++++------ .github/workflows/deploy-docker-images.yml | 2 +- .github/workflows/deploy-single-docker-image.yml | 4 ++-- github-actions/deploy-ci-artifact/action.yaml | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index 9155a57..d781a3e 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -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 @@ -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 }} @@ -297,7 +297,7 @@ 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 }} @@ -305,7 +305,7 @@ jobs: 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 @@ -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 }} diff --git a/.github/workflows/deploy-docker-images.yml b/.github/workflows/deploy-docker-images.yml index 8603df5..79853af 100644 --- a/.github/workflows/deploy-docker-images.yml +++ b/.github/workflows/deploy-docker-images.yml @@ -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 }} diff --git a/.github/workflows/deploy-single-docker-image.yml b/.github/workflows/deploy-single-docker-image.yml index a30ed3c..d5a449b 100644 --- a/.github/workflows/deploy-single-docker-image.yml +++ b/.github/workflows/deploy-single-docker-image.yml @@ -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 }} @@ -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 }} diff --git a/github-actions/deploy-ci-artifact/action.yaml b/github-actions/deploy-ci-artifact/action.yaml index a42bcc7..1e51256 100644 --- a/github-actions/deploy-ci-artifact/action.yaml +++ b/github-actions/deploy-ci-artifact/action.yaml @@ -38,7 +38,7 @@ runs: git config --global user.email "compiler@pionix.de" 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