Skip to content

Commit

Permalink
Merge branch 'master' into fix/loading-first-step
Browse files Browse the repository at this point in the history
  • Loading branch information
marluanespiritusanto authored May 9, 2024
2 parents 6679c96 + eea08b4 commit c674e2e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-check-linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
fetch-depth: 0

- name: Lint Code Base
uses: super-linter/super-linter/[email protected].0
uses: super-linter/super-linter/[email protected].1
env:
VALIDATE_ALL_CODEBASE: false
VALIDATE_SHELL_SHFMT: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sub-build-push-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
persist-credentials: false

- name: Inject slug/short variables
uses: rlespinasse/github-slug-action@v4.4.1
uses: rlespinasse/github-slug-action@v4.5.0
with:
short-length: 7

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sub-cloudrun-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
url: ${{ steps.deploy.outputs.url }}
steps:
- name: Inject slug/short variables
uses: rlespinasse/github-slug-action@v4.4.1
uses: rlespinasse/github-slug-action@v4.5.0

- name: Authenticate to GCP
id: auth
Expand All @@ -96,7 +96,7 @@ jobs:

- name: Deploy to cloud run
id: deploy
uses: google-github-actions/[email protected].0
uses: google-github-actions/[email protected].1
with:
image: ${{ vars.GOOGLE_ARTIFACT_REGISTRY }}/${{ inputs.app_name }}@${{ inputs.image_digest }}
service: ${{ inputs.app_name }}-${{ needs.versioning.outputs.version || env.GITHUB_HEAD_REF_SLUG || env.GITHUB_REF_SLUG }}
Expand Down
2 changes: 1 addition & 1 deletion src/app/[lang]/register/form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export function Form({ cedula }: Props) {
username: citizen.id,
name: {
first: citizen.names,
last: `${citizen.firstSurname} ${citizen.secondSurname}`,
last: [citizen.firstSurname, citizen.secondSurname].join(' '),
},
birthdate: citizen.birthDate,
gender: citizen.gender,
Expand Down

0 comments on commit c674e2e

Please sign in to comment.