Skip to content

Commit a5222b4

Browse files
authored
Merge pull request #35 from m-misiura/sync-upstream-develop-20260325
Sync upstream develop
2 parents 63c706c + 0d6aae1 commit a5222b4

11 files changed

Lines changed: 28 additions & 33 deletions

File tree

.github/workflows/_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ jobs:
4141
runs-on: ${{ inputs.image }}
4242

4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v6
4545

4646
- name: Set up Python ${{ inputs.python-version }}
47-
uses: actions/setup-python@v5
47+
uses: actions/setup-python@v6
4848
with:
4949
python-version: ${{ inputs.python-version }}
5050

.github/workflows/create-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818
with:
1919
ref: develop
2020
fetch-depth: 0

.github/workflows/docs-build.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v6
3636
- name: Set up Python ${{ env.PYTHON_VERSION }}
37-
uses: actions/setup-python@v5
37+
uses: actions/setup-python@v6
3838
with:
3939
python-version: ${{ env.PYTHON_VERSION }}
4040
- name: Bootstrap poetry (Linux and macOS)
@@ -55,7 +55,7 @@ jobs:
5555
sudo find _build -name .doctrees -prune -exec rm -rf {} \;
5656
sudo find _build -name .buildinfo -exec rm {} \;
5757
- name: Upload HTML
58-
uses: actions/upload-artifact@v4
58+
uses: actions/upload-artifact@v6
5959
with:
6060
name: html-build-artifact
6161
path: _build/docs
@@ -70,7 +70,7 @@ jobs:
7070
echo ${{ github.event.action }} > ./pr/action.txt
7171
- name: Upload PR information
7272
if: github.event_name == 'pull_request'
73-
uses: actions/upload-artifact@v4
73+
uses: actions/upload-artifact@v6
7474
with:
7575
name: pr
7676
path: pr/
@@ -80,15 +80,15 @@ jobs:
8080
needs: [build-docs]
8181
runs-on: ubuntu-latest
8282
steps:
83-
- uses: actions/checkout@v4
83+
- uses: actions/checkout@v6
8484
with:
8585
ref: "gh-pages"
8686
- name: Initialize Git configuration
8787
run: |
8888
git config user.name docs-build
8989
git config user.email do-not-send@github.com
9090
- name: Download artifacts
91-
uses: actions/download-artifact@v4
91+
uses: actions/download-artifact@v7
9292
with:
9393
name: html-build-artifact
9494
path: ${{ github.ref_name }}

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
name: Lint Code
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121

2222
- name: Set up Python
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version: ${{ env.PYTHON_VERSION }}
2626

.github/workflows/publish-pypi-approval.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
fi
4444
4545
- name: Checkout repository
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v6
4747
with:
4848
ref: ${{ steps.version.outputs.tag }}
4949
fetch-depth: 0
@@ -59,7 +59,7 @@ jobs:
5959
echo "✅ Version validated: $VERSION_IN_FILE matches tag $TAG_VERSION"
6060
6161
- name: Download artifact
62-
uses: actions/download-artifact@v4
62+
uses: actions/download-artifact@v7
6363
with:
6464
name: ${{ steps.version.outputs.artifact_name }}
6565
path: dist

.github/workflows/publish-wheel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Set up Python
15-
uses: actions/setup-python@v5
15+
uses: actions/setup-python@v6
1616
with:
1717
python-version: '3.11'
1818

1919
- name: Download artifact
20-
uses: actions/download-artifact@v4
20+
uses: actions/download-artifact@v7
2121
with:
2222
name: nemoguardrails-${{ github.event.inputs.version }}.whl
2323

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626

2727
steps:
2828
- name: Checkout code
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v6
3030
with:
3131
fetch-depth: 0
3232
token: ${{ secrets.GITHUB_TOKEN }}
3333

3434
- name: Set up Python
35-
uses: actions/setup-python@v5
35+
uses: actions/setup-python@v6
3636
with:
3737
python-version: "3.10"
3838

.github/workflows/test-and-build-wheel.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
outputs:
2020
artifact_name: ${{ steps.set-artifact-name.outputs.artifact_name }}
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323

2424
- name: Set up Python
25-
uses: actions/setup-python@v5
25+
uses: actions/setup-python@v6
2626
with:
2727
python-version: ${{ env.PYTHON_VERSION }}
2828

@@ -75,7 +75,7 @@ jobs:
7575
fi
7676
7777
- name: Upload Build Artifacts
78-
uses: actions/upload-artifact@v4
78+
uses: actions/upload-artifact@v6
7979
with:
8080
name: ${{ steps.set-artifact-name.outputs.artifact_name }}
8181
path: dist/*
@@ -88,12 +88,12 @@ jobs:
8888
python-version: ["3.10", "3.11", "3.12", "3.13"]
8989
steps:
9090
- name: Set up Python
91-
uses: actions/setup-python@v5
91+
uses: actions/setup-python@v6
9292
with:
9393
python-version: ${{ matrix.python-version }}
9494

9595
- name: Download Build Artifacts
96-
uses: actions/download-artifact@v4
96+
uses: actions/download-artifact@v7
9797
with:
9898
name: ${{ needs.build-wheel.outputs.artifact_name }}
9999

.github/workflows/test-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
#
2525
# Checkout the code
2626
- name: Checkout
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v6
2828

2929
# Get runner architecture
3030
- name: Get runner architecture

.github/workflows/test-published-dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
python-version: ["3.10", "3.11", "3.12", "3.13"]
1313
steps:
1414
- name: Set up Python
15-
uses: actions/setup-python@v5
15+
uses: actions/setup-python@v6
1616
with:
1717
python-version: ${{ matrix.python-version }}
1818

0 commit comments

Comments
 (0)