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) #23

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
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
Loading