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 Apr 16, 2024
1 parent e33f1c5 commit 83f9cf9
Show file tree
Hide file tree
Showing 20 changed files with 51 additions and 51 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/api-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- uses: actions/checkout@v4
- name: Set up python
id: setup-python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
#----------------------------------------------
Expand All @@ -51,7 +51,7 @@ jobs:
#----------------------------------------------
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ inputs.working_directory }}/.venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
uses: actions/checkout@v4
- name: Set up python ${{ matrix.python-version }}
id: setup-python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
#----------------------------------------------
Expand All @@ -153,7 +153,7 @@ jobs:
#----------------------------------------------
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ inputs.working_directory }}/.venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
Expand All @@ -176,7 +176,7 @@ jobs:
poetry run pytest
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
file: ${{ inputs.working_directory }}/coverage.xml
flags: ${{ inputs.codecov_flag }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/backend-cd-ocp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
# Only allow run the CD flow in protected branch
if: github.ref_protected == true

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

defaults:
run:
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
deploy:
needs: setup
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

environment:
name: "${{ needs.setup.outputs.TARGET }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/charts-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
fetch-depth: 0

- name: Set up Helm
uses: azure/setup-helm@v1
uses: azure/setup-helm@v4
with:
version: v3.4.0

- uses: actions/setup-python@v2
- uses: actions/setup-python@v5
with:
python-version: 3.7

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/charts-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
git config user.email "[email protected]"
- name: Install Helm
uses: azure/setup-helm@v1
uses: azure/setup-helm@v4
with:
version: v3.4.0

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/cloud-run-job-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
# Only allow run the CD flow in protected branch
if: github.ref_protected == true

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

defaults:
run:
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
deploy:
needs: setup
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

environment:
name: "${{ needs.setup.outputs.TARGET }}"
Expand Down Expand Up @@ -91,14 +91,14 @@ jobs:
# GCP authentication
- name: 'Authenticate to Google Cloud'
id: 'auth'
uses: 'google-github-actions/auth@v1'
uses: 'google-github-actions/auth@v2'
with:
workload_identity_provider: ${{ secrets.WORKLOAD_IDENTIFY_POOLS_PROVIDER }}
service_account: ${{ secrets.GCP_SERVICE_ACCOUNT }}

# Setup gcloud CLI
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v1
uses: google-github-actions/setup-gcloud@v2

# Trigger Cloud Deploy
- name: Deployment
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/cloud-run-service-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
# Only allow run the CD flow in protected branch
if: github.ref_protected == true

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

defaults:
run:
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
deploy:
needs: setup
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

environment:
name: "${{ needs.setup.outputs.TARGET }}"
Expand Down Expand Up @@ -91,14 +91,14 @@ jobs:
# GCP authentication
- name: 'Authenticate to Google Cloud'
id: 'auth'
uses: 'google-github-actions/auth@v1'
uses: 'google-github-actions/auth@v2'
with:
workload_identity_provider: ${{ secrets.WORKLOAD_IDENTIFY_POOLS_PROVIDER }}
service_account: ${{ secrets.GCP_SERVICE_ACCOUNT }}

# Setup gcloud CLI
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v1
uses: google-github-actions/setup-gcloud@v2

# Trigger Cloud Deploy
- name: Deployment
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/downpage-off.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
downpage-off:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/downpage-on.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
default: "prod"
jobs:
downpage-on:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/frontend-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
# Only allow run the CD flow in protected branch
if: github.ref_protected == true

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

defaults:
run:
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
deploy:
needs: setup
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

environment:
name: "${{ needs.setup.outputs.TARGET }}"
Expand Down Expand Up @@ -91,14 +91,14 @@ jobs:
# GCP authentication
- name: "Authenticate to Google Cloud"
id: "auth"
uses: "google-github-actions/auth@v1"
uses: "google-github-actions/auth@v2"
with:
workload_identity_provider: ${{ secrets.WORKLOAD_IDENTIFY_POOLS_PROVIDER }}
service_account: ${{ secrets.GCP_SERVICE_ACCOUNT }}

# Setup gcloud CLI
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v1
uses: google-github-actions/setup-gcloud@v2

# Trigger Cloud Deploy
- name: Deployment
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/restart-services-hourly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
restart-services:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/restart-services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
restart-services:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
environment: ${{ github.event.inputs.environment }}
steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ui-cd-node20.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
environment:
name: "${{ github.event_name == 'push' && 'dev' || inputs.environment }}"

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

defaults:
run:
Expand Down Expand Up @@ -93,14 +93,14 @@ jobs:
# GCP authentication
- name: 'Authenticate to Google Cloud'
id: 'auth'
uses: 'google-github-actions/auth@v1'
uses: 'google-github-actions/auth@v2'
with:
workload_identity_provider: ${{ env.WORKLOAD_IDENTIFY_POOLS_PROVIDER }}
service_account: ${{ env.GCP_SERVICE_ACCOUNT }}

# Setup gcloud CLI
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v1
uses: google-github-actions/setup-gcloud@v2

# Build and push image to Google Container Registry
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ui-cd-ocp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
environment:
name: "${{ github.event_name == 'push' && 'dev' || inputs.environment }}"

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

defaults:
run:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ui-cd-pnpm-nested-pkg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
environment:
name: "${{ github.event_name == 'push' && 'dev' || inputs.environment }}"

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

defaults:
run:
Expand Down Expand Up @@ -96,14 +96,14 @@ jobs:
# GCP authentication
- name: 'Authenticate to Google Cloud'
id: 'auth'
uses: 'google-github-actions/auth@v1'
uses: 'google-github-actions/auth@v2'
with:
workload_identity_provider: ${{ env.WORKLOAD_IDENTIFY_POOLS_PROVIDER }}
service_account: ${{ env.GCP_SERVICE_ACCOUNT }}

# Setup gcloud CLI
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v1
uses: google-github-actions/setup-gcloud@v2

# Build and push image to Google Container Registry
- name: Build (specific pckg)
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ui-cd-pnpm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
environment:
name: "${{ github.event_name == 'push' && 'dev' || inputs.environment }}"

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

defaults:
run:
Expand Down Expand Up @@ -96,14 +96,14 @@ jobs:
# GCP authentication
- name: 'Authenticate to Google Cloud'
id: 'auth'
uses: 'google-github-actions/auth@v1'
uses: 'google-github-actions/auth@v2'
with:
workload_identity_provider: ${{ env.WORKLOAD_IDENTIFY_POOLS_PROVIDER }}
service_account: ${{ env.GCP_SERVICE_ACCOUNT }}

# Setup gcloud CLI
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v1
uses: google-github-actions/setup-gcloud@v2

# Build and push image to Google Container Registry
- name: Build (specific pckg)
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ui-cd-private-node20.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
environment:
name: "${{ github.event_name == 'push' && 'dev' || inputs.environment }}"

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

defaults:
run:
Expand Down Expand Up @@ -87,14 +87,14 @@ jobs:
# GCP authentication
- name: 'Authenticate to Google Cloud'
id: 'auth'
uses: 'google-github-actions/auth@v1'
uses: 'google-github-actions/auth@v2'
with:
workload_identity_provider: ${{ env.WORKLOAD_IDENTIFY_POOLS_PROVIDER }}
service_account: ${{ env.GCP_SERVICE_ACCOUNT }}

# Setup gcloud CLI
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v1
uses: google-github-actions/setup-gcloud@v2

# Build and push image to Google Container Registry
- name: Build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ui-cd-private.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
environment:
name: "${{ github.event_name == 'push' && 'dev' || inputs.environment }}"

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

defaults:
run:
Expand Down Expand Up @@ -87,14 +87,14 @@ jobs:
# GCP authentication
- name: 'Authenticate to Google Cloud'
id: 'auth'
uses: 'google-github-actions/auth@v1'
uses: 'google-github-actions/auth@v2'
with:
workload_identity_provider: ${{ env.WORKLOAD_IDENTIFY_POOLS_PROVIDER }}
service_account: ${{ env.GCP_SERVICE_ACCOUNT }}

# Setup gcloud CLI
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v1
uses: google-github-actions/setup-gcloud@v2

# Build and push image to Google Container Registry
- name: Build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ui-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
environment:
name: "${{ github.event_name == 'push' && 'dev' || inputs.environment }}"

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

defaults:
run:
Expand Down Expand Up @@ -93,14 +93,14 @@ jobs:
# GCP authentication
- name: 'Authenticate to Google Cloud'
id: 'auth'
uses: 'google-github-actions/auth@v1'
uses: 'google-github-actions/auth@v2'
with:
workload_identity_provider: ${{ env.WORKLOAD_IDENTIFY_POOLS_PROVIDER }}
service_account: ${{ env.GCP_SERVICE_ACCOUNT }}

# Setup gcloud CLI
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v1
uses: google-github-actions/setup-gcloud@v2

# Build and push image to Google Container Registry
- name: Build
Expand Down
Loading

0 comments on commit 83f9cf9

Please sign in to comment.