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
4 changes: 2 additions & 2 deletions .github/composite/build-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ runs:
package_json_file: js/package.json

- name: Set up OpenJDK 25
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: "temurin"
java-version: "25"
Comment thread
Arshadul-Monir marked this conversation as resolved.
Expand All @@ -52,7 +52,7 @@ runs:
key: ${{ github.job }}-${{ hashFiles('**/pom.xml') }}

- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v3
uses: crazy-max/ghaction-github-runtime@v4

- name: Run script
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/composite/build-image/internal/standup-bot/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ runs:
GPG_PASSPHRASE: ${{ inputs.GPG_PASSPHRASE }}

- name: Set up OpenJDK 25
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: "temurin"
java-version: "25"

- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v3
uses: crazy-max/ghaction-github-runtime@v4

- name: Run script
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/composite/load-secrets/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ runs:
GPG_PASSPHRASE: ${{ inputs.GPG_PASSPHRASE }}

- name: Load GPG secret key
uses: crazy-max/ghaction-import-gpg@v6
uses: crazy-max/ghaction-import-gpg@v7
with:
gpg_private_key: ${{ inputs.GPG_PRIVATE_KEY }}
passphrase: ${{ inputs.GPG_PASSPHRASE }}
Expand Down
4 changes: 2 additions & 2 deletions .github/composite/redeploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ runs:
package_json_file: js/package.json

- name: Set up OpenJDK 25
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: "temurin"
java-version: "25"
Expand All @@ -48,7 +48,7 @@ runs:
key: ${{ github.job }}-${{ hashFiles('**/pom.xml') }}

- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v3
uses: crazy-max/ghaction-github-runtime@v4

- name: Run script
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/composite/redeploy/internal/standup-bot/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v3
uses: crazy-max/ghaction-github-runtime@v4

- name: Run script
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/composite/setup-ci/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ runs:
run: bun run --cwd .github/scripts test

- name: Load GPG secret key
uses: crazy-max/ghaction-import-gpg@v6
uses: crazy-max/ghaction-import-gpg@v7
if: inputs.GPG_PRIVATE_KEY != '' && inputs.GPG_PASSPHRASE != ''
with:
gpg_private_key: ${{ inputs.GPG_PRIVATE_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion .github/composite/test/backend-pre-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ runs:
uses: ./.github/composite/setup-ci

- name: Set up OpenJDK 25
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: "temurin"
java-version: "25"
Expand Down
6 changes: 3 additions & 3 deletions .github/composite/test/backend-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ runs:
package_json_file: js/package.json

- name: Set up OpenJDK 25
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: "temurin"
java-version: "25"
Expand All @@ -45,7 +45,7 @@ runs:
key: ${{ github.job }}-${{ hashFiles('**/pom.xml') }}

- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v3
uses: crazy-max/ghaction-github-runtime@v4

- name: Run script
shell: bash
Expand All @@ -58,4 +58,4 @@ runs:
report_paths: "target/surefire-reports/TEST-*.xml"
detailed_summary: true
include_time_in_summary: true
fail_on_failure: false
fail_on_failure: false
2 changes: 1 addition & 1 deletion .github/composite/test/frontend-pre-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:
GPG_PASSPHRASE: ${{ inputs.GPG_PASSPHRASE }}

- name: Set up OpenJDK 25
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: "temurin"
java-version: "25"
Expand Down
4 changes: 2 additions & 2 deletions .github/composite/test/frontend-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ runs:
package_json_file: js/package.json

- name: Set up OpenJDK 25
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: "temurin"
java-version: "25"
Expand All @@ -45,7 +45,7 @@ runs:
key: ${{ github.job }}-${{ hashFiles('**/pom.xml') }}

- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v3
uses: crazy-max/ghaction-github-runtime@v4

- name: Run script
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/composite/validate-db/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ runs:
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

- name: Set up OpenJDK 25
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: "temurin"
java-version: "25"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ai-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
steps:
- name: Get PR head SHA
id: pr-head
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
result-encoding: string
script: |
Expand All @@ -54,7 +54,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ needs.getPRHead.outputs.sha }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ai-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
steps:
- name: Get PR head SHA
id: pr-head
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
result-encoding: string
script: |
Expand All @@ -46,7 +46,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ needs.getPRHead.outputs.sha }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/approval.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/github-script@v7
- uses: actions/github-script@v8
with:
script: |
const ME = context.payload.pull_request.user.login;
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto-approval.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup CI
uses: ./.github/composite/setup-ci
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Run workflow
uses: ./.github/composite/test/backend-pre-test
Expand All @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up pnpm
uses: pnpm/action-setup@master
Expand All @@ -56,7 +56,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Run workflow
uses: ./.github/composite/test/backend-test
Expand All @@ -71,7 +71,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Run workflow
uses: ./.github/composite/test/frontend-test
Expand All @@ -88,7 +88,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Run workflow
uses: ./.github/composite/build-image
Expand All @@ -106,7 +106,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Run workflow
uses: ./.github/composite/build-image/internal/standup-bot
Expand All @@ -122,7 +122,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Run workflow
uses: ./.github/composite/validate-db
Expand All @@ -139,7 +139,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Run workflow
uses: ./.github/composite/build-image
Expand All @@ -155,7 +155,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Run workflow
uses: ./.github/composite/build-image/internal/standup-bot
Expand All @@ -173,7 +173,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Run workflow
uses: ./.github/composite/redeploy
Expand All @@ -191,7 +191,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Run workflow
uses: ./.github/composite/redeploy/internal/standup-bot
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/copy-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
steps:
- name: Get PR head SHA
id: pr-head
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
result-encoding: string
script: |
Expand All @@ -49,7 +49,7 @@ jobs:
needs: getPRHead
steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ needs.getPRHead.outputs.sha }}

Expand All @@ -60,7 +60,7 @@ jobs:
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

- name: Set up OpenJDK 25
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: "temurin"
java-version: "25"
Expand Down
Loading
Loading