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
2 changes: 1 addition & 1 deletion .github/workflows/api-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}-api-test
restore-keys: ${{ runner.os }}-maven-
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
name: Download Docker Images
with:
name: standalone-image-api-test
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
submodules: true
- name: Collect Workflow Metrics
uses: ./.github/actions/actions-workflow-metrics
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
name: Download Binary Package
with:
# Only run cluster test on jdk8
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
- name: Collect Workflow Metrics
uses: ./.github/actions/actions-workflow-metrics
- name: Download Binary Package
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: binary-package-8
path: ds_schema_check_test/dev
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
submodules: true

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v4
with:
languages: java
queries: +security-and-quality
Expand All @@ -55,4 +55,4 @@ jobs:
-Prelease

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v4
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.9
uses: actions/setup-python@v2
uses: actions/setup-python@v6
with:
python-version: 3.9
- name: Run Dev Relative Reference
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
name: Sanity Check
uses: ./.github/actions/sanity-check
- name: Set up Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v6
with:
node-version: 16
- name: Code Format Check
Expand Down
Loading