Skip to content

Commit

Permalink
Merge branch 'master' into feat/existent-redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreyArt1 authored Oct 10, 2024
2 parents b034d4b + ba6590a commit 576a5d5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 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 @@ -33,7 +33,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code Repository
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:

steps:
- name: Checkout Code Repository
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4

- run: echo "$AWS_EXPORTS_JSON" > src/aws-exports.js
shell: bash
Expand All @@ -67,7 +67,7 @@ jobs:
version: 9

- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4.0.3
uses: actions/setup-node@v4.0.4
with:
node-version: ${{ matrix.node }}
cache: pnpm
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/issue-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
contents: read

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Parse issue form
uses: stefanbuck/github-issue-parser@v3
Expand All @@ -25,7 +25,7 @@ jobs:
template-path: .github/ISSUE_TEMPLATE/bug_report.yml

- name: Set labels based on severity field
uses: redhat-plumbers-in-action/advanced-issue-labeler@v2
uses: redhat-plumbers-in-action/advanced-issue-labeler@v3
with:
issue-form: ${{ steps.issue-parser.outputs.jsonString }}
section: severity
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sub-build-push-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
environment:
name: ${{ inputs.environment }}
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4
with:
persist-credentials: false

Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
# Setup Docker Buildx to allow use of docker cache layers from GH
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3.5.0
uses: docker/setup-buildx-action@v3.7.1

- name: Login to Google Artifact Registry
uses: docker/login-action@v3.3.0
Expand All @@ -83,7 +83,7 @@ jobs:
# Build and push image to Google Artifact Registry, and possibly DockerHub
- name: Build & push
id: docker_build
uses: docker/build-push-action@v6.4.1
uses: docker/build-push-action@v6.9.0
with:
target: ${{ inputs.dockerfile_target }}
context: .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sub-cloudrun-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:

- name: Deploy to cloud run
id: deploy
uses: google-github-actions/deploy-cloudrun@v2.6.0
uses: google-github-actions/deploy-cloudrun@v2.7.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

0 comments on commit 576a5d5

Please sign in to comment.