Skip to content

Commit 504fb98

Browse files
authored
Merge branch 'main' into isaac/table-be-data-model
2 parents 23426b0 + 310d0f3 commit 504fb98

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/auto-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
if: github.event.pull_request.merged == true
1313
steps:
1414
- name: Checkout main branch
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
ref: main
1818
token: ${{ secrets.GH_DEPLOY_REPO_TOKEN }}
1919

2020
- name: Setup Node
21-
uses: actions/setup-node@v4
21+
uses: actions/setup-node@v6
2222
with:
2323
node-version: '20.x'
2424
registry-url: 'https://registry.npmjs.org'

.github/workflows/design-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
runs-on: ubuntu-latest
2727

2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v5
3030

3131
- name: Setup Node
32-
uses: actions/setup-node@v3
32+
uses: actions/setup-node@v6
3333
with:
3434
node-version: '16.x'
3535
registry-url: 'https://registry.npmjs.org'

.github/workflows/develop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020

2121
- name: Set Environment
2222
run: .github/scripts/set-environment.sh
2323

2424
- name: Setup Node
25-
uses: actions/setup-node@v4
25+
uses: actions/setup-node@v6
2626
with:
2727
node-version: '20.x'
2828
registry-url: 'https://registry.npmjs.org'

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
2222
2323
- name: Check out repository code
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v5
2525
with:
2626
fetch-depth: 0
2727

@@ -53,6 +53,6 @@ jobs:
5353
run: rm docs/.gitignore
5454

5555
- name: Deploy to GitHub Pages
56-
uses: JamesIves/github-pages-deploy-action@v4.6.1
56+
uses: JamesIves/github-pages-deploy-action@v4.7.3
5757
with:
5858
folder: docs

.github/workflows/open-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
name: 'Add Labels'
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525

26-
- uses: actions/github-script@v6
26+
- uses: actions/github-script@v8
2727
# skip auto patch labeling for dependabot or renovate PRs
2828
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' }}
2929
with:

.github/workflows/publish-rc.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
GITHUB_TOKEN: ${{ secrets.GH_DEPLOY_REPO_TOKEN }}
2222

2323
- name: Checkout
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
with:
2626
ref: ${{ steps.get-branch.outputs.branch }}
2727

@@ -31,7 +31,7 @@ jobs:
3131
run: echo "ARTIFACT_REGISTRY_PROVIDER=npm" >> $GITHUB_ENV
3232

3333
- name: Setup Node
34-
uses: actions/setup-node@v4
34+
uses: actions/setup-node@v6
3535
with:
3636
node-version: '20.x'
3737
registry-url: 'https://registry.npmjs.org'

0 commit comments

Comments
 (0)