Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into feature/slo
Browse files Browse the repository at this point in the history
  • Loading branch information
thaobk54 committed Jan 29, 2024
2 parents 3207dff + d59c456 commit ce2ff7f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/next_version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
steps:
# This is due to 'detached HEAD' issue
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
if: github.event_name == 'pull_request'
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
if: github.event_name == 'push'
with:
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: '0'

Expand All @@ -47,7 +47,7 @@ jobs:
version: v3.8.2

- name: Login to Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ inputs.CONTAINER_REGISTRY_URL }}
username: ${{ secrets.REGISTRY_USERNAME }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: '0'

- name: Login to Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ inputs.CONTAINER_REGISTRY_URL }}
username: ${{ secrets.REGISTRY_USERNAME }}
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down

0 comments on commit ce2ff7f

Please sign in to comment.