From 3cfabfc802599fe877984fba9c53558cb32e7332 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 26 Sep 2024 19:33:39 +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 | 14 +++++++------- 6 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/compile_wgrib2.yaml b/.github/workflows/compile_wgrib2.yaml index 39df327..792240f 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 203f85f..2010ce3 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 c22aa54..db03924 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 7ead61e..699bf06 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 bf06f0b..fcf00f3 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 626b6a4..c2a5631 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@v6 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 }}