Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout local repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: ${{ github.workspace }}/${{ env.SERVICE_NAME }}
- name: Install nvm at specific version
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
PUBLISH_NEW_VERSION: ${{ steps.determaine_should_publish_new_version.outputs.PUBLISH_NEW_VERSION }}
steps:
- name: Checkout local repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Determine should publish docker image
id: determaine_should_publish_new_version
run: |
Expand All @@ -112,7 +112,7 @@ jobs:
CURRENT_TAG: ${{ steps.find_current_tag_name.outputs.CURRENT_TAG }}
steps:
- name: Checkout local repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Determine current tag
id: find_current_tag_name
run: |
Expand All @@ -129,7 +129,7 @@ jobs:
contents: write
steps:
- name: Checkout local repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: 'main'
fetch-depth: 0
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
needs: [ build, determaine_current_tag_name, update_changelog ]
steps:
- name: Checkout local repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: ${{ github.workspace }}/${{ env.SERVICE_NAME }}
- name: Install jenv
Expand Down Expand Up @@ -248,7 +248,7 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout local repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: ${{ github.workspace }}/${{ env.SERVICE_NAME }}
- name: Setup Pages
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
HAS_FRONTEND_CHANGES: ${{ steps.changes.outputs.frontend }}
steps:
- name: Checkout local repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: ${{ github.workspace }}/${{ env.SERVICE_NAME }}
fetch-depth: 5
Expand All @@ -40,7 +40,7 @@ jobs:
if: ${{ github.actor != 'dependabot[bot]' && github.event_name != 'schedule' }}
steps:
- name: Checkout local repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 5
path: ${{ github.workspace }}/${{ env.SERVICE_NAME }}
Expand All @@ -59,7 +59,7 @@ jobs:
needs: [ determine-changes ]
steps:
- name: Checkout local repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: ${{ github.workspace }}/${{ env.SERVICE_NAME }}
- name: Install jenv
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
needs: [ determine-changes ]
steps:
- name: Checkout local repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: ${{ github.workspace }}/${{ env.SERVICE_NAME }}
- name: Install nvm at specific version
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
LANGUAGES: ${{ steps.changes.outputs.changes }}
steps:
- name: Checkout local repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 5
- name: Determine new changes
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
language: ${{ fromJSON(needs.determine-changes.outputs.LANGUAGES) }}
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- uses: actions/setup-java@v5
if: ${{ matrix.language == 'java' }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout local repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: ${{ github.workspace }}/${{ env.SERVICE_NAME }}
ref: ${{ inputs.git_ref }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/on-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
HAS_FRONTEND_CHANGES: ${{ steps.changes.outputs.frontend }}
steps:
- name: Checkout local repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: ${{ github.workspace }}/${{ env.SERVICE_NAME }}
fetch-depth: 5
Expand All @@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout local repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: ${{ github.workspace }}/${{ env.SERVICE_NAME }}
- name: Install prettier using npm
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout local repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: ${{ github.workspace }}/${{ env.SERVICE_NAME }}
- name: Install nvm at specific version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trivy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout local repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: ${{ github.workspace }}/${{ env.SERVICE_NAME }}
- name: Cache boot jar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-gradle-wrapper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
contents: write
steps:
- name: Checkout local repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
Expand Down
Loading