Skip to content

Commit 88f513b

Browse files
committed
push latest element
1 parent 5addeab commit 88f513b

27 files changed

Lines changed: 3087 additions & 397 deletions

File tree

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
version: 2
22
updates:
3+
- package-ecosystem: "uv"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
open-pull-requests-limit: 10
38
- package-ecosystem: "github-actions"
49
directory: "/"
510
schedule:

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@ env:
1111
jobs:
1212
Build:
1313
runs-on: self-hosted
14+
if : ${{ github.actor != 'dependabot[bot]' }}
1415
strategy:
1516
fail-fast: true
1617
steps:
17-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v6
1819
- name: Build Genesis Core
1920
env:
2021
PUSH_CFG: ${{ secrets.PUSH_CFG }}
@@ -40,7 +41,7 @@ jobs:
4041
echo "${VERSION}" > "${ARTIFACTS_PATH}/version.txt"
4142
4243
- name: Upload the build artifacts
43-
uses: actions/upload-artifact@v4
44+
uses: actions/upload-artifact@v7
4445
with:
4546
name: build_artifacts
4647
path: artifacts/

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: actions/checkout@v4
2222
with:
2323
fetch-depth: 0
24-
- uses: actions/setup-python@v5
24+
- uses: actions/setup-python@v6
2525
with:
2626
python-version: 3.12
2727
- name: Install requirements
@@ -45,11 +45,11 @@ jobs:
4545
with:
4646
ref: gh-pages
4747
- name: Setup Pages
48-
uses: actions/configure-pages@v5
48+
uses: actions/configure-pages@v6
4949
- name: Upload artifact
50-
uses: actions/upload-pages-artifact@v3
50+
uses: actions/upload-pages-artifact@v4
5151
with:
5252
path: '.'
5353
- name: Deploy to GitHub Pages
5454
id: deployment
55-
uses: actions/deploy-pages@v4
55+
uses: actions/deploy-pages@v5

.github/workflows/markdownlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
files: '**/*.md'
2121
separator: ","
22-
- uses: DavidAnson/markdownlint-cli2-action@v22
22+
- uses: DavidAnson/markdownlint-cli2-action@v23
2323
if: steps.changed-files.outputs.any_changed == 'true'
2424
with:
2525
globs: ${{ steps.changed-files.outputs.all_changed_files }}

.github/workflows/tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
matrix:
2121
python-version: [ "3.12" ]
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v6
2424
- name: Set up Python ${{ matrix.python-version }}
25-
uses: actions/setup-python@v5
25+
uses: actions/setup-python@v6
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828
- name: Install requirements
@@ -60,9 +60,9 @@ jobs:
6060
# Maps tcp port 5432 on service container to the host
6161
- 5432:5432
6262
steps:
63-
- uses: actions/checkout@v3
63+
- uses: actions/checkout@v6
6464
- name: Set up Python ${{ matrix.python-version }}
65-
uses: actions/setup-python@v5
65+
uses: actions/setup-python@v6
6666
with:
6767
python-version: ${{ matrix.python-version }}
6868
- name: Install dependencies
@@ -86,9 +86,9 @@ jobs:
8686
matrix:
8787
python-version: ["3.12"]
8888
steps:
89-
- uses: actions/checkout@v3
89+
- uses: actions/checkout@v6
9090
- name: Set up Python ${{ matrix.python-version }}
91-
uses: actions/setup-python@v5
91+
uses: actions/setup-python@v6
9292
with:
9393
python-version: ${{ matrix.python-version }}
9494
- name: Install dependencies

0 commit comments

Comments
 (0)