Skip to content
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
4 changes: 2 additions & 2 deletions .github/actions/build-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ runs:
- name: Login to Amazon ECR
uses: aws-actions/amazon-ecr-login@v2
id: login-ecr
- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: inputs.git_fetch_submodules == 'true'
with:
submodules: recursive
ssh-key: ${{ inputs.ssh_key }}
- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: inputs.git_fetch_submodules != 'true'
- name: Install SSH Key
# You may pin to the exact commit or the version.
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/build-publish-docker/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ outputs:
runs:
using: "composite"
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: inputs.git_fetch_submodules == 'true'
with:
submodules: recursive
ssh-key: ${{ inputs.ssh_key }}
- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: inputs.git_fetch_submodules != 'true'
- name: Install SSH Key
# You may pin to the exact commit or the version.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-load-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
labels: ${{ inputs.runner-labels }}
steps:
- name: Checkout current branch
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Install SSH key
uses: shimataro/ssh-key-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golang-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
build:
runs-on: ${{ inputs.runner }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Docker Hub login
uses: docker/login-action@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/golang-security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
GO111MODULE: on
steps:
- name: Checkout Source
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Git config setup for bitbucket
run: git config --global url."git@bitbucket.org:fasttrackdevteam".insteadOf "https://bitbucket.org/fasttrackdevteam"
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
GO111MODULE: on
steps:
- name: Checkout Source
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Git config setup for bitbucket
run: git config --global url."git@bitbucket.org:fasttrackdevteam".insteadOf "https://bitbucket.org/fasttrackdevteam"
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
env:
GO111MODULE: on
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Git config setup for github
run: git config --global url."git@github.com:".insteadOf "https://github.com/"

Expand Down