Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/assemble/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ runs:

- name: Upload outputs
if: always() && inputs.upload-files == 'true'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: build-${{ steps.artifact_type.outputs.artifact }}-${{ inputs.build-type }}-${{ inputs.id }}
path: ${{ steps.plan.outputs.paths }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/checkstyle/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ runs:
- name: Upload Detekt reports
id: upload_reports
if: failure() || inputs.upload-on-success == 'true'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: detekt-reports-${{ inputs.id }}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/reports/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
using: 'composite'
steps:
- name: Download unit test outputs
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: unit-tests-${{ inputs.build-type }}-${{ inputs.id }}

Expand All @@ -36,7 +36,7 @@ runs:
./gradlew coverageReport -PbuildType=${{ inputs.build-type }} --stacktrace

- name: Upload JaCoCo reports
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: reports-jacoco-${{ inputs.id }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/unit_tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ runs:

- name: Upload test outputs
if: always() && inputs.upload == 'true'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: unit-tests-${{ inputs.build-type }}-${{ inputs.id }}
path: ${{ inputs.reports-path }}
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/ci_bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ on:
description: 'JSON array of modules (e.g. [":libraries:core",":libraries:network"]). Required for this workflow.'
required: true

bom-module:
description: 'BOM module name (used for version bumping, e.g. ":bom")'
required: false
default: ':bom'

version:
description: 'Bump module version'
required: true
Expand All @@ -36,6 +41,8 @@ env:
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
# Retention days used for output files
RETENTION_DAYS: 1
# BOM module name (used for version bumping)
BOM_MODULE: ${{ github.event.inputs.bom-module || ':bom' }}

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand Down Expand Up @@ -96,7 +103,7 @@ jobs:
uses: ./.github/actions/bump_module_version
with:
version: ${{ github.event.inputs.version }}
modules: '[":bom"]'
modules: '["${{ env.BOM_MODULE }}"]'
git-create-tag: true
git-branch: ${{ github.ref_name }}
git-user-name: ${{ vars.CI_GIT_USER_NAME }}
Expand Down
Loading