Skip to content

Commit

Permalink
chore: bump self-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nepalevov committed Jan 26, 2024
1 parent 1ad6636 commit 80e0ffb
Show file tree
Hide file tree
Showing 11 changed files with 61 additions and 61 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/publish_gradle_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
style_checks:
runs-on: ubuntu-latest
steps:
- uses: epam/ai-dial-ci/actions/gradle_checkstyle@1.1.0
- uses: epam/ai-dial-ci/actions/gradle_checkstyle@1.2.0

code_checks:
runs-on: ubuntu-latest
steps:
- uses: epam/ai-dial-ci/actions/prepare_java@1.1.0
- uses: epam/ai-dial-ci/actions/prepare_java@1.2.0
- name: Test
continue-on-error: ${{ inputs.bypass_checks }}
run: |
Expand All @@ -44,13 +44,13 @@ jobs:
contents: write
packages: write
steps:
- uses: epam/ai-dial-ci/actions/semantic_versioning@1.1.0
- uses: epam/ai-dial-ci/actions/semantic_versioning@1.2.0
id: semantic_versioning

ort:
runs-on: ubuntu-latest
steps:
- uses: epam/ai-dial-ci/actions/ort@1.1.0
- uses: epam/ai-dial-ci/actions/ort@1.2.0

release:
needs:
Expand All @@ -66,10 +66,10 @@ jobs:
packages: write

steps:
- uses: epam/ai-dial-ci/actions/generate_release_notes@1.1.0
- uses: epam/ai-dial-ci/actions/generate_release_notes@1.2.0
with:
latest_tag: ${{ needs.calculate_version.outputs.latest_tag }}
- uses: epam/ai-dial-ci/actions/prepare_java@1.1.0
- uses: epam/ai-dial-ci/actions/prepare_java@1.2.0
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
lfs: true
Expand All @@ -78,7 +78,7 @@ jobs:
run: |
sed -i "s/^version = .*/version = \"${{ needs.calculate_version.outputs.next_version }}\"/g" build.gradle
./gradlew build -x test
- uses: epam/ai-dial-ci/actions/build_docker@1.1.0
- uses: epam/ai-dial-ci/actions/build_docker@1.2.0
with:
ghcr_username: ${{ github.actor }}
ghcr_password: ${{ secrets.ACTIONS_BOT_TOKEN }}
Expand All @@ -94,7 +94,7 @@ jobs:
${{ github.ref == 'refs/heads/development' && format('{0}/{1}:{2}', 'ghcr.io', env.IMAGE_NAME, 'development') || ''}}
${{ startsWith(github.ref, 'refs/heads/release-') && needs.calculate_version.outputs.is_latest == 'true' && format('{0}:{1}', env.IMAGE_NAME, 'latest') || ''}}
${{ startsWith(github.ref, 'refs/heads/release-') && needs.calculate_version.outputs.is_latest == 'true' && format('{0}/{1}:{2}', 'ghcr.io', env.IMAGE_NAME, 'latest') || ''}}
- uses: epam/ai-dial-ci/actions/publish_tag_release@1.1.0
- uses: epam/ai-dial-ci/actions/publish_tag_release@1.2.0
with:
tag_version: ${{ needs.calculate_version.outputs.next_version }}
changelog_file: "/tmp/my_changelog" # comes from generate_release_notes step; TODO: beautify
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/publish_python_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
style_checks:
runs-on: ubuntu-latest
steps:
- uses: epam/ai-dial-ci/actions/prepare_python@1.1.0
- uses: epam/ai-dial-ci/actions/prepare_python@1.2.0
with:
python_version: ${{ inputs.python_version }}
install_poetry: true
Expand All @@ -36,7 +36,7 @@ jobs:
code_checks:
runs-on: ubuntu-latest
steps:
- uses: epam/ai-dial-ci/actions/prepare_python@1.1.0
- uses: epam/ai-dial-ci/actions/prepare_python@1.2.0
with:
python_version: ${{ inputs.python_version }}
install_poetry: true
Expand All @@ -57,7 +57,7 @@ jobs:
contents: write
packages: write
steps:
- uses: epam/ai-dial-ci/actions/semantic_versioning@1.1.0
- uses: epam/ai-dial-ci/actions/semantic_versioning@1.2.0
id: semantic_versioning

release:
Expand All @@ -74,7 +74,7 @@ jobs:
packages: write

steps:
- uses: epam/ai-dial-ci/actions/generate_release_notes@1.1.0
- uses: epam/ai-dial-ci/actions/generate_release_notes@1.2.0
with:
latest_tag: ${{ needs.calculate_version.outputs.latest_tag }}
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Expand All @@ -85,7 +85,7 @@ jobs:
shell: bash
run: |
sed -i "s/^version = .*/version = \"${{ needs.calculate_version.outputs.non_semver_next_version }}\"/g" pyproject.toml
- uses: epam/ai-dial-ci/actions/build_docker@1.1.0
- uses: epam/ai-dial-ci/actions/build_docker@1.2.0
with:
ghcr_username: ${{ github.actor }}
ghcr_password: ${{ secrets.ACTIONS_BOT_TOKEN }}
Expand All @@ -101,7 +101,7 @@ jobs:
${{ github.ref == 'refs/heads/development' && format('{0}/{1}:{2}', 'ghcr.io', env.IMAGE_NAME, 'development') || ''}}
${{ startsWith(github.ref, 'refs/heads/release-') && needs.calculate_version.outputs.is_latest == 'true' && format('{0}:{1}', env.IMAGE_NAME, 'latest') || ''}}
${{ startsWith(github.ref, 'refs/heads/release-') && needs.calculate_version.outputs.is_latest == 'true' && format('{0}/{1}:{2}', 'ghcr.io', env.IMAGE_NAME, 'latest') || ''}}
- uses: epam/ai-dial-ci/actions/publish_tag_release@1.1.0
- uses: epam/ai-dial-ci/actions/publish_tag_release@1.2.0
with:
tag_version: ${{ needs.calculate_version.outputs.next_version }}
changelog_file: "/tmp/my_changelog" # comes from generate_release_notes step; TODO: beautify
Expand All @@ -111,14 +111,14 @@ jobs:
ort:
runs-on: ubuntu-latest
steps:
- uses: epam/ai-dial-ci/actions/prepare_python@1.1.0
- uses: epam/ai-dial-ci/actions/prepare_python@1.2.0
with:
python_version: ${{ inputs.python_version }}
install_poetry: true
- name: Install dependencies
shell: bash
run: |
poetry install --all-extras
- uses: epam/ai-dial-ci/actions/ort@1.1.0
- uses: epam/ai-dial-ci/actions/ort@1.2.0
with:
bypass_checks: ${{ inputs.bypass_ort }}
16 changes: 8 additions & 8 deletions .github/workflows/publish_python_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
style_checks:
runs-on: ubuntu-latest
steps:
- uses: epam/ai-dial-ci/actions/prepare_python@1.1.0
- uses: epam/ai-dial-ci/actions/prepare_python@1.2.0
with:
python_version: "${{ inputs.python_version }}"
install_poetry: true
Expand All @@ -47,7 +47,7 @@ jobs:
matrix:
python-version: ["3.11", "3.10", "3.9", "3.8"]
steps:
- uses: epam/ai-dial-ci/actions/prepare_python@1.1.0
- uses: epam/ai-dial-ci/actions/prepare_python@1.2.0
with:
python_version: "${{ matrix.python-version }}"
install_poetry: true
Expand All @@ -60,13 +60,13 @@ jobs:
ort:
runs-on: ubuntu-latest
steps:
- uses: epam/ai-dial-ci/actions/prepare_python@1.1.0
- uses: epam/ai-dial-ci/actions/prepare_python@1.2.0
- name: Install dependencies
shell: bash
run: |
pip install poetry
poetry install
- uses: epam/ai-dial-ci/actions/ort@1.1.0
- uses: epam/ai-dial-ci/actions/ort@1.2.0

calculate_version:
runs-on: ubuntu-latest
Expand All @@ -77,7 +77,7 @@ jobs:
contents: write
packages: write
steps:
- uses: epam/ai-dial-ci/actions/semantic_versioning@1.1.0
- uses: epam/ai-dial-ci/actions/semantic_versioning@1.2.0
id: semantic_versioning

release:
Expand All @@ -94,10 +94,10 @@ jobs:
packages: write

steps:
- uses: epam/ai-dial-ci/actions/generate_release_notes@1.1.0
- uses: epam/ai-dial-ci/actions/generate_release_notes@1.2.0
with:
latest_tag: ${{ needs.calculate_version.outputs.latest_tag }}
- uses: epam/ai-dial-ci/actions/prepare_python@1.1.0
- uses: epam/ai-dial-ci/actions/prepare_python@1.2.0
with:
python_version: "${{ inputs.python_version }}"
install_poetry: true
Expand All @@ -124,7 +124,7 @@ jobs:
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: make publish
- uses: epam/ai-dial-ci/actions/publish_tag_release@1.1.0
- uses: epam/ai-dial-ci/actions/publish_tag_release@1.2.0
with:
tag_version: ${{ needs.calculate_version.outputs.non_semver_next_version }}
changelog_file: "/tmp/my_changelog" # comes from generate_release_notes step; TODO: beautify
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/publish_vanilla_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
contents: write
packages: write
steps:
- uses: epam/ai-dial-ci/actions/semantic_versioning@1.1.0
- uses: epam/ai-dial-ci/actions/semantic_versioning@1.2.0
id: semantic_versioning

ort:
runs-on: ubuntu-latest
steps:
- uses: epam/ai-dial-ci/actions/ort@1.1.0
- uses: epam/ai-dial-ci/actions/ort@1.2.0

release:
needs:
Expand All @@ -42,13 +42,13 @@ jobs:
packages: write

steps:
- uses: epam/ai-dial-ci/actions/generate_release_notes@1.1.0
- uses: epam/ai-dial-ci/actions/generate_release_notes@1.2.0
with:
latest_tag: ${{ needs.calculate_version.outputs.latest_tag }}
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
lfs: true
- uses: epam/ai-dial-ci/actions/build_docker@1.1.0
- uses: epam/ai-dial-ci/actions/build_docker@1.2.0
with:
ghcr_username: ${{ github.actor }}
ghcr_password: ${{ secrets.ACTIONS_BOT_TOKEN }}
Expand All @@ -64,7 +64,7 @@ jobs:
${{ github.ref == 'refs/heads/development' && format('{0}/{1}:{2}', 'ghcr.io', env.IMAGE_NAME, 'development') || ''}}
${{ startsWith(github.ref, 'refs/heads/release-') && needs.calculate_version.outputs.is_latest == 'true' && format('{0}:{1}', env.IMAGE_NAME, 'latest') || ''}}
${{ startsWith(github.ref, 'refs/heads/release-') && needs.calculate_version.outputs.is_latest == 'true' && format('{0}/{1}:{2}', 'ghcr.io', env.IMAGE_NAME, 'latest') || ''}}
- uses: epam/ai-dial-ci/actions/publish_tag_release@1.1.0
- uses: epam/ai-dial-ci/actions/publish_tag_release@1.2.0
with:
tag_version: ${{ needs.calculate_version.outputs.next_version }}
changelog_file: "/tmp/my_changelog" # comes from generate_release_notes step; TODO: beautify
18 changes: 9 additions & 9 deletions .github/workflows/publish_yarn_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
style_checks:
runs-on: ubuntu-latest
steps:
- uses: epam/ai-dial-ci/actions/prepare_node@1.1.0
- uses: epam/ai-dial-ci/actions/prepare_node@1.2.0
with:
node_version: ${{ inputs.node_version }}
- name: Test
Expand All @@ -32,7 +32,7 @@ jobs:
code_checks:
runs-on: ubuntu-latest
steps:
- uses: epam/ai-dial-ci/actions/prepare_node@1.1.0
- uses: epam/ai-dial-ci/actions/prepare_node@1.2.0
with:
node_version: ${{ inputs.node_version }}
- name: Test
Expand All @@ -52,18 +52,18 @@ jobs:
contents: write
packages: write
steps:
- uses: epam/ai-dial-ci/actions/semantic_versioning@1.1.0
- uses: epam/ai-dial-ci/actions/semantic_versioning@1.2.0
id: semantic_versioning

ort:
runs-on: ubuntu-latest
steps:
- uses: epam/ai-dial-ci/actions/prepare_python@1.1.0
- uses: epam/ai-dial-ci/actions/prepare_python@1.2.0
- name: Install dependencies
shell: bash
run: |
npm ci
- uses: epam/ai-dial-ci/actions/ort@1.1.0
- uses: epam/ai-dial-ci/actions/ort@1.2.0

release:
needs:
Expand All @@ -79,13 +79,13 @@ jobs:
packages: write

steps:
- uses: epam/ai-dial-ci/actions/generate_release_notes@1.1.0
- uses: epam/ai-dial-ci/actions/generate_release_notes@1.2.0
with:
latest_tag: ${{ needs.calculate_version.outputs.latest_tag }}
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
lfs: true
- uses: epam/ai-dial-ci/actions/prepare_node@1.1.0
- uses: epam/ai-dial-ci/actions/prepare_node@1.2.0
with:
node_version: ${{ inputs.node_version }}
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Expand All @@ -97,7 +97,7 @@ jobs:
shell: bash
run: |
npm version ${{ needs.calculate_version.outputs.next_version }} --no-git-tag-version || true # upstream branch may already be updated
- uses: epam/ai-dial-ci/actions/build_docker@1.1.0
- uses: epam/ai-dial-ci/actions/build_docker@1.2.0
with:
ghcr_username: ${{ github.actor }}
ghcr_password: ${{ secrets.ACTIONS_BOT_TOKEN }}
Expand All @@ -113,7 +113,7 @@ jobs:
${{ github.ref == 'refs/heads/development' && format('{0}/{1}:{2}', 'ghcr.io', env.IMAGE_NAME, 'development') || ''}}
${{ startsWith(github.ref, 'refs/heads/release-') && needs.calculate_version.outputs.is_latest == 'true' && format('{0}:{1}', env.IMAGE_NAME, 'latest') || ''}}
${{ startsWith(github.ref, 'refs/heads/release-') && needs.calculate_version.outputs.is_latest == 'true' && format('{0}/{1}:{2}', 'ghcr.io', env.IMAGE_NAME, 'latest') || ''}}
- uses: epam/ai-dial-ci/actions/publish_tag_release@1.1.0
- uses: epam/ai-dial-ci/actions/publish_tag_release@1.2.0
with:
tag_version: ${{ needs.calculate_version.outputs.next_version }}
changelog_file: "/tmp/my_changelog" # comes from generate_release_notes step; TODO: beautify
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test_gradle_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
style_checks:
runs-on: ubuntu-latest
steps:
- uses: epam/ai-dial-ci/actions/gradle_checkstyle@1.1.0
- uses: epam/ai-dial-ci/actions/gradle_checkstyle@1.2.0

code_checks:
runs-on: ubuntu-latest
steps:
- uses: epam/ai-dial-ci/actions/prepare_java@1.1.0
- uses: epam/ai-dial-ci/actions/prepare_java@1.2.0
- name: Test
continue-on-error: ${{ inputs.bypass_checks }}
run: |
Expand All @@ -37,10 +37,10 @@ jobs:
docker_build:
runs-on: ubuntu-latest
steps:
- uses: epam/ai-dial-ci/actions/prepare_java@1.1.0
- uses: epam/ai-dial-ci/actions/prepare_java@1.2.0
- name: Build
run: ./gradlew build -x test
- uses: epam/ai-dial-ci/actions/build_docker@1.1.0
- uses: epam/ai-dial-ci/actions/build_docker@1.2.0
with:
image_name: ghcr.io/${{ env.IMAGE_NAME }}
image_tag: test
Expand All @@ -50,4 +50,4 @@ jobs:
ort:
runs-on: ubuntu-latest
steps:
- uses: epam/ai-dial-ci/actions/ort@1.1.0
- uses: epam/ai-dial-ci/actions/ort@1.2.0
10 changes: 5 additions & 5 deletions .github/workflows/test_python_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
style_checks:
runs-on: ubuntu-latest
steps:
- uses: epam/ai-dial-ci/actions/prepare_python@1.1.0
- uses: epam/ai-dial-ci/actions/prepare_python@1.2.0
with:
python_version: ${{ inputs.python_version }}
install_poetry: true
Expand All @@ -36,7 +36,7 @@ jobs:
code_checks:
runs-on: ubuntu-latest
steps:
- uses: epam/ai-dial-ci/actions/prepare_python@1.1.0
- uses: epam/ai-dial-ci/actions/prepare_python@1.2.0
with:
python_version: ${{ inputs.python_version }}
install_poetry: true
Expand All @@ -52,7 +52,7 @@ jobs:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
lfs: true
- uses: epam/ai-dial-ci/actions/build_docker@1.1.0
- uses: epam/ai-dial-ci/actions/build_docker@1.2.0
with:
image_name: ghcr.io/${{ env.IMAGE_NAME }}
image_tag: test
Expand All @@ -62,14 +62,14 @@ jobs:
ort:
runs-on: ubuntu-latest
steps:
- uses: epam/ai-dial-ci/actions/prepare_python@1.1.0
- uses: epam/ai-dial-ci/actions/prepare_python@1.2.0
with:
python_version: ${{ inputs.python_version }}
install_poetry: true
- name: Install dependencies
shell: bash
run: |
poetry install --all-extras
- uses: epam/ai-dial-ci/actions/ort@1.1.0
- uses: epam/ai-dial-ci/actions/ort@1.2.0
with:
bypass_checks: ${{ inputs.bypass_ort }}
Loading

0 comments on commit 80e0ffb

Please sign in to comment.