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] committed Sep 26, 2024
1 parent ef5680d commit 1fb0741
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr-close.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,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 @@ -44,7 +44,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 @@ -66,7 +66,7 @@ jobs:
echo "COMMIT_SHA=$sha" >> $GITHUB_ENV
- uses: actions/checkout@v3
- uses: actions/checkout@v4
id: checkout
with:
# fetch-depth: 0
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/pr-open-build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,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 @@ -53,7 +53,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 @@ -70,13 +70,13 @@ jobs:
shell: bash
needs: CalculateImageTags
name: 'Build Streamlit 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 @@ -90,14 +90,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 @@ -114,11 +114,11 @@ jobs:
shell: bash
needs: [CalculateImageTags, BuildContainerImage]
name: 'Deploy Streamlit 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:
# fetch-depth: 0
Expand Down

0 comments on commit 1fb0741

Please sign in to comment.