Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update sap/project-piper-action action to v1.20.0 (main) #7094

Merged
merged 1 commit into from
Mar 17, 2025
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/open-source-security.yml
Original file line number Diff line number Diff line change
@@ -16,13 +16,13 @@ jobs:
- uses: actions/checkout@v4

- name: artifactPrepareVersion
uses: SAP/project-piper-action@v1.19.0
uses: SAP/project-piper-action@v1.20.0
with:
step-name: artifactPrepareVersion
flags: --versioningType cloud_noTag

- name: detectExecuteScan
uses: SAP/project-piper-action@v1.19.0
uses: SAP/project-piper-action@v1.20.0
with:
step-name: detectExecuteScan
flags: '--token ${{ secrets.DETECT_TOKEN }}'

Unchanged files with check annotations Beta

function ResizeTestComponent({ onChange }: { onChange: (event: { width: number; height: number }) => void }) {
useEffect(() => {
attachResizeHandler(onChange);
}, []);

Check warning on line 12 in packages/base/src/Device/index.cy.tsx

GitHub Actions / lint

React Hook useEffect has a missing dependency: 'onChange'. Either include it or remove the dependency array
const unregister = () => {
detachResizeHandler(onChange);
}) {
useEffect(() => {
attachOrientationChangeHandler(onChange);
}, []);

Check warning on line 32 in packages/base/src/Device/index.cy.tsx

GitHub Actions / lint

React Hook useEffect has a missing dependency: 'onChange'. Either include it or remove the dependency array
const unregister = () => {
detachOrientationChangeHandler(onChange);
const definedWebComponents = new Set<ComponentType>([]);
export const withWebComponent = <Props extends Record<string, any>, RefType = Ui5DomRef>(

Check warning on line 30 in packages/base/src/wrapper/withWebComponent.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
tagName: string,
regularProperties: string[],
booleanProperties: string[],
}
}
});
}, [Component, ...propsToApply]);

Check warning on line 191 in packages/base/src/wrapper/withWebComponent.tsx

GitHub Actions / lint

React Hook useEffect has missing dependencies: 'propsToApply' and 'ref'. Either include them or remove the dependency array

Check warning on line 191 in packages/base/src/wrapper/withWebComponent.tsx

GitHub Actions / lint

React Hook useEffect has a spread element in its dependency array. This means we can't statically verify whether you've passed the correct dependencies
useEffect(() => {
setAttachEvents(true);
* @param measure {IChartMeasure} Current measure object
* @param dataElement {object} Current data element
*/
highlightColor?: (value: number, measure: MeasureConfig, dataElement: Record<string, any>) => CSSProperties['color'];

Check warning on line 79 in packages/charts/src/components/BarChart/BarChart.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
}
interface DimensionConfig extends IChartDimension {
? dataKeys.findIndex((key) => key === chartConfig.secondYAxis?.dataKey)
: 0;
const [componentRef, chartRef] = useSyncRef<any>(ref);

Check warning on line 189 in packages/charts/src/components/BarChart/BarChart.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
const onItemLegendClick = useLegendItemClick(onLegendClick);
const labelFormatter = useLabelFormatter(primaryDimension);
speed={2}
backgroundColor={ThemingParameters.sapContent_ImagePlaceholderBackground}
foregroundColor={ThemingParameters.sapContent_ImagePlaceholderForegroundColor}
backgroundOpacity={ThemingParameters.sapContent_DisabledOpacity as any}

Check warning on line 15 in packages/charts/src/components/BarChart/Placeholder.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
>
<rect x="20" y="10" width="1" height="135" />
<rect x="20" y="20" width="85" height="15" />
* @param measure {IChartMeasure} Current measure object
* @param dataElement {object} Current data element
*/
highlightColor?: (value: number, measure: MeasureConfig, dataElement: Record<string, any>) => CSSProperties['color'];

Check warning on line 69 in packages/charts/src/components/BulletChart/BulletChart.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
}
interface DimensionConfig extends IChartDimension {
...rest
} = props;
const [componentRef, chartRef] = useSyncRef<any>(ref);

Check warning on line 149 in packages/charts/src/components/BulletChart/BulletChart.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
const chartConfig: BulletChartProps['chartConfig'] = {
yAxisVisible: false,