Skip to content

Commit d0d385e

Browse files
committed
Adjust action references
1 parent b76fc5d commit d0d385e

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.github/workflows/build-and-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v3
1818

1919
- name: Setup Python & Poetry Environment
20-
uses: nicoretti/python-toolbox/.github/actions/python-environment@main
20+
uses: exasol/python-toolbox/.github/actions/python-environment@main
2121

2222
- name: Build Artifacts
2323
run: poetry build

.github/workflows/check-release-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/checkout@v3
1515

1616
- name: Setup Python & Poetry Environment
17-
uses: nicoretti/python-toolbox/.github/actions/python-environment@main
17+
uses: exasol/python-toolbox/.github/actions/python-environment@main
1818

1919
- name: Check Tag Version
2020
# make sure the pushed/created tag matched the project version

.github/workflows/checks.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fetch-depth: 0
1616

1717
- name: Setup Python & Poetry Environment
18-
uses: nicoretti/python-toolbox/.github/actions/python-environment@main
18+
uses: exasol/python-toolbox/.github/actions/python-environment@main
1919

2020
- name: Check Version(s)
2121
run: poetry run version-check exasol/toolbox/version.py
@@ -30,7 +30,7 @@ jobs:
3030
uses: actions/checkout@v3
3131

3232
- name: Setup Python & Poetry Environment
33-
uses: nicoretti/python-toolbox/.github/actions/python-environment@main
33+
uses: exasol/python-toolbox/.github/actions/python-environment@main
3434

3535
- name: Build Documentation
3636
run: |
@@ -50,7 +50,7 @@ jobs:
5050
uses: actions/checkout@v3
5151

5252
- name: Setup Python & Poetry Environment
53-
uses: nicoretti/python-toolbox/.github/actions/python-environment@main
53+
uses: exasol/python-toolbox/.github/actions/python-environment@main
5454
with:
5555
python-version: ${{ matrix.python-version }}
5656

@@ -71,7 +71,7 @@ jobs:
7171
uses: actions/checkout@v3
7272

7373
- name: Setup Python & Poetry Environment
74-
uses: nicoretti/python-toolbox/.github/actions/python-environment@main
74+
uses: exasol/python-toolbox/.github/actions/python-environment@main
7575
with:
7676
python-version: ${{ matrix.python-version }}
7777

@@ -93,7 +93,7 @@ jobs:
9393
uses: actions/checkout@v3
9494

9595
- name: Setup Python & Poetry Environment
96-
uses: nicoretti/python-toolbox/.github/actions/python-environment@main
96+
uses: exasol/python-toolbox/.github/actions/python-environment@main
9797
with:
9898
python-version: ${{ matrix.python-version }}
9999

.github/workflows/ci-cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ jobs:
99

1010
check-tag-version-job:
1111
name: Check Release Tag
12-
uses: nicoretti/python-toolbox/.github/workflows/check-release-tag.yml@main
12+
uses: exasol/python-toolbox/.github/workflows/check-release-tag.yml@main
1313

1414
ci-job:
1515
name: Checks
1616
needs: [ check-tag-version-job ]
17-
uses: nicoretti/python-toolbox/.github/workflows/checks.yml@main
17+
uses: exasol/python-toolbox/.github/workflows/checks.yml@main
1818

1919
cd-job:
2020
name: Continues Delivery
2121
needs: [ ci-job ]
22-
uses: nicoretti/python-toolbox/.github/workflows/build-and-publish.yml@main
22+
uses: exasol/python-toolbox/.github/workflows/build-and-publish.yml@main
2323
secrets:
2424
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
2525

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717

1818
ci-job:
1919
name: Checks
20-
uses: nicoretti/python-toolbox/.github/workflows/checks.yml@main
20+
uses: exasol/python-toolbox/.github/workflows/checks.yml@main

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: actions/checkout@v3
1313

1414
- name: Setup Python & Poetry Environment
15-
uses: nicoretti/python-toolbox/.github/actions/python-environment@main
15+
uses: exasol/python-toolbox/.github/actions/python-environment@main
1616

1717
- name: Build Documentation
1818
run: |

.github/workflows/pr-merge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010

1111
ci-job:
1212
name: Checks
13-
uses: nicoretti/python-toolbox/.github/workflows/checks.yml@main
13+
uses: exasol/python-toolbox/.github/workflows/checks.yml@main
1414

1515
publish-docs:
1616
name: Publish Documentation
17-
uses: nicoretti/python-toolbox/.github/workflows/gh-pages.yml@main
17+
uses: exasol/python-toolbox/.github/workflows/gh-pages.yml@main

0 commit comments

Comments
 (0)