Skip to content

Commit 1a2d7ac

Browse files
committed
push latest element
1 parent 5addeab commit 1a2d7ac

26 files changed

Lines changed: 2998 additions & 408 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: true
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v6
1818
- name: Build Genesis Core
1919
env:
2020
PUSH_CFG: ${{ secrets.PUSH_CFG }}
@@ -40,7 +40,7 @@ jobs:
4040
echo "${VERSION}" > "${ARTIFACTS_PATH}/version.txt"
4141
4242
- name: Upload the build artifacts
43-
uses: actions/upload-artifact@v4
43+
uses: actions/upload-artifact@v7
4444
with:
4545
name: build_artifacts
4646
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)