From 93c78ef31e65f14683bf44e5ce3439ebebce1df6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 8 Jan 2025 13:41:10 +0000 Subject: [PATCH] chore(deps): update github actions all dependencies --- .github/workflows/compile_wgrib2.yaml | 4 ++-- .github/workflows/copy_cansip_grib_files.yaml | 6 +++--- .github/workflows/copy_cmc_grib_files.yaml | 6 +++--- .github/workflows/grib_spatial_processing.yml | 6 +++--- .../workflows/pr_close_listener_deploy_prod.yaml | 6 +++--- .github/workflows/pr_open_build_listener.yaml | 16 ++++++++-------- 6 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/compile_wgrib2.yaml b/.github/workflows/compile_wgrib2.yaml index 39df3277..792240f5 100644 --- a/.github/workflows/compile_wgrib2.yaml +++ b/.github/workflows/compile_wgrib2.yaml @@ -14,7 +14,7 @@ jobs: run: shell: bash name: 'Compile wgrib2 binary for ubuntu' - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 environment: RUN env: OBJ_STORE_BUCKET: ${{ secrets.OBJ_STORE_BUCKET }} @@ -22,7 +22,7 @@ jobs: FC: gfortran steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 id: checkout with: fetch-depth: 0 diff --git a/.github/workflows/copy_cansip_grib_files.yaml b/.github/workflows/copy_cansip_grib_files.yaml index 203f85f4..2010ce3c 100644 --- a/.github/workflows/copy_cansip_grib_files.yaml +++ b/.github/workflows/copy_cansip_grib_files.yaml @@ -15,7 +15,7 @@ jobs: run: shell: bash name: 'Download CANSIP Grib2 Files' - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 environment: RUN env: OBJ_STORE_BUCKET: ${{ secrets.OBJ_STORE_BUCKET }} @@ -24,12 +24,12 @@ jobs: OBJ_STORE_HOST: ${{ secrets.OBJ_STORE_HOST }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 id: checkout with: fetch-depth: 0 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: '3.11' diff --git a/.github/workflows/copy_cmc_grib_files.yaml b/.github/workflows/copy_cmc_grib_files.yaml index c22aa54e..db03924a 100644 --- a/.github/workflows/copy_cmc_grib_files.yaml +++ b/.github/workflows/copy_cmc_grib_files.yaml @@ -18,7 +18,7 @@ jobs: run: shell: bash name: 'Download and Process CMC Grib2 Files' - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 environment: RUN env: OBJ_STORE_BUCKET: ${{ secrets.OBJ_STORE_BUCKET }} @@ -28,12 +28,12 @@ jobs: WGRIB_UTILITY: /usr/local/bin/wgrib2 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 id: checkout with: fetch-depth: 0 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: '3.11' diff --git a/.github/workflows/grib_spatial_processing.yml b/.github/workflows/grib_spatial_processing.yml index 7ead61e9..699bf062 100644 --- a/.github/workflows/grib_spatial_processing.yml +++ b/.github/workflows/grib_spatial_processing.yml @@ -18,7 +18,7 @@ jobs: run: shell: bash name: 'Spatial Processing of Grib Files' - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 environment: RUN env: OBJ_STORE_BUCKET: ${{ secrets.OBJ_STORE_BUCKET }} @@ -27,12 +27,12 @@ jobs: OBJ_STORE_HOST: ${{ secrets.OBJ_STORE_HOST }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 id: checkout with: fetch-depth: 0 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: '3.11' diff --git a/.github/workflows/pr_close_listener_deploy_prod.yaml b/.github/workflows/pr_close_listener_deploy_prod.yaml index bf06f0be..fcf00f38 100644 --- a/.github/workflows/pr_close_listener_deploy_prod.yaml +++ b/.github/workflows/pr_close_listener_deploy_prod.yaml @@ -20,7 +20,7 @@ jobs: # Clean up OpenShift when PR closed, no conditions cleanup-openshift: name: Cleanup OpenShift - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 environment: dev steps: @@ -53,7 +53,7 @@ jobs: name: Image Promotions # TODO: uncomment once working if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'main' - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 environment: prod permissions: packages: write @@ -75,7 +75,7 @@ jobs: echo "COMMIT_SHA=$sha" >> $GITHUB_ENV - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 id: checkout with: ref: ${{ env.COMMIT_SHA }} diff --git a/.github/workflows/pr_open_build_listener.yaml b/.github/workflows/pr_open_build_listener.yaml index 626b6a43..c429f184 100644 --- a/.github/workflows/pr_open_build_listener.yaml +++ b/.github/workflows/pr_open_build_listener.yaml @@ -30,7 +30,7 @@ jobs: run: shell: bash name: calculateImageTag - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 outputs: imagetag: ${{ steps.CalculateImageTagstep.outputs.IMAGE_TAG}} steps: @@ -49,13 +49,13 @@ jobs: shell: bash needs: CalculateImageTags name: 'Build Listener Container Image' - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 env: DEBUG_DEPLOY: false steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 id: checkout - name: Verify tag @@ -68,14 +68,14 @@ jobs: echo event number is: ${{ github.event.number }} - name: Log in to GitHub Docker Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and Push Client Docker Image - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 env: IMAGE_TAG: ${{ needs.CalculateImageTags.outputs.imagetag }} @@ -93,11 +93,11 @@ jobs: shell: bash needs: [CalculateImageTags, BuildContainerImage] name: 'Deploy AMQP Listener Image' - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 environment: dev steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 id: checkout with: ref: ${{ github.event.pull_request.head.sha }} @@ -156,7 +156,7 @@ jobs: echo "OC_ROUTE=https://$route_path" >> $GITHUB_ENV - name: Comment PR - uses: thollander/actions-comment-pull-request@v2 + uses: thollander/actions-comment-pull-request@v3 with: message: | Route to deployed app is: ${{ env.OC_ROUTE }}/docs