Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update github actions all dependencies (major) #109

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
16 changes: 8 additions & 8 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@v6
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 Expand Up @@ -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
Loading