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 Oct 14, 2024
1 parent 6e73200 commit a741e1e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pr_open.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run:
shell: bash
name: calculateImageTag
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
imagetag: ${{ steps.EchoTag.outputs.IMAGE_TAG}}
steps:
Expand All @@ -62,7 +62,7 @@ jobs:
run:
shell: bash
needs: CalculateImageTags
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: GET Image Tag
id: getImageTag
Expand All @@ -79,13 +79,13 @@ jobs:
shell: bash
needs: CalculateImageTags
name: 'Build 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
# with:
# fetch-depth: 0
Expand All @@ -100,14 +100,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 Down
4 changes: 2 additions & 2 deletions .github/workflows/run_daily_pipeline_cron_mamba.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
run:
shell: bash
name: 'Run the Snowpack historical norms comparison analysis'
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
environment: PROD
env:
OBJ_STORE_BUCKET: ${{ secrets.OBJ_STORE_BUCKET }}
Expand All @@ -29,7 +29,7 @@ jobs:
SNOWPACK_ENVS_PTH: ./env.yaml

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/run_pipeline_auto_fill_data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
defaults:
run:
shell: bash
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
continue-on-error: true
environment: PROD
env:
Expand All @@ -31,7 +31,7 @@ jobs:
matrix: ${{ steps.identify-dates-to-run.outputs.matrix }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
id: checkout
with:
fetch-depth: 0
Expand All @@ -45,7 +45,7 @@ jobs:
# environment-name: snowpack_env

- name: Install micromamba (conda) environment from explicit.lock
uses: mamba-org/setup-micromamba@v1
uses: mamba-org/setup-micromamba@v2
with:
# micromamba-version: '1.3.1'
environment-name: snowpack_env
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_run_container_image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
run:
shell: bash
name: 'Run the Snowpack historical norms comparison analysis'
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
environment: PROD
env:
OBJ_STORE_BUCKET: ${{ secrets.OBJ_STORE_BUCKET }}
Expand All @@ -28,7 +28,7 @@ jobs:
EARTHDATA_PASS: ${{ secrets.EARTHDATA_PASS }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
id: checkout
with:
fetch-depth: 0
Expand All @@ -37,7 +37,7 @@ jobs:
# uses: docker/setup-docker@v2

- name: Log in to GHCR
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down

0 comments on commit a741e1e

Please sign in to comment.