Skip to content

Commit

Permalink
chore(deps): update github actions all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 27, 2024
1 parent ff85f97 commit ecc40f6
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/compile_wgrib2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ 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 }}
CC: gcc
FC: gfortran

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
id: checkout
with:
fetch-depth: 0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/copy_cansip_grib_files.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/copy_cmc_grib_files.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/grib_spatial_processing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr_close_listener_deploy_prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand All @@ -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 }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pr_open_build_listener.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand All @@ -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 }}

Expand All @@ -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 }}
Expand Down

0 comments on commit ecc40f6

Please sign in to comment.