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

build(deps): bump actions/cache from 3.2.3 to 4.2.0 #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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/workflows/eslint-tsc.yml
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ jobs:
run: echo "::set-output name=dir::$(yarn cache dir)"

- name: Use Yarn cache
uses: actions/cache@v3.2.3
uses: actions/cache@v4.2.0
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

Unchanged files with check annotations Beta

sys: { id: entryId },
}: PageLandingFieldsFragment) => {
const inspectorProps = useContentfulInspectorMode({ entryId });
const { demoExperimentMode, experimentVariant, userId } = useContext(ExperimentContext);

Check failure on line 31 in src/components/features/hero-banner/HeroBanner.tsx

GitHub Actions / eslint-tsc

Property 'userId' does not exist on type 'ExperimentContextProps'.
const [hero, setHero] = useState<Hero | null>(null);
useEffect(() => {
</GridItem>
{hero && (
<StyledGridItem area={'hero'} zIndex={0}>
{hero.image && hero.image.url && <CtfImage {...hero.image} />}

Check failure on line 68 in src/components/features/hero-banner/HeroBanner.tsx

GitHub Actions / eslint-tsc

Type '{ __typename?: "Asset" | undefined; contentType?: Maybe<string> | undefined; contentfulMetadata: ContentfulMetadata; description?: Maybe<string> | undefined; ... 7 more ...; width?: Maybe<...> | undefined; }' is not assignable to type 'ImageProps'.
<Box css={{ position: 'absolute', top: '50%', left: '20%' }}>
<Box css={{ paddingTop: '20px', paddingBottom: '20px' }}>
<Text>{hero?.preHeadline}</Text>
}, [demoExperimentMode, experimentVariant]);
return (
<ExperimentContext.Provider value={{ demoExperimentMode, setDemoExperimentMode, experimentVariant, setExperimentVariant, userId }}>

Check failure on line 32 in src/components/shared/ExperimentProvider/ExperimentProvider.tsx

GitHub Actions / eslint-tsc

Type '{ demoExperimentMode: boolean; setDemoExperimentMode: Dispatch<SetStateAction<boolean>>; experimentVariant: string; setExperimentVariant: Dispatch<SetStateAction<string>>; userId: string; }' is not assignable to type 'ExperimentContextProps'.
{children}
</ExperimentContext.Provider>
);
export const Header = (props: BoxProps) => {
const { t } = useTranslation();
const { demoExperimentMode, setDemoExperimentMode, setExperimentVariant, userId } =

Check failure on line 24 in src/components/templates/header/header.tsx

GitHub Actions / eslint-tsc

Property 'userId' does not exist on type 'ExperimentContextProps'.
useContext(ExperimentContext);
return (
display={{ base: 'none', md: 'block' }}
w="144px">
<Link href="/" title={t('common.homepage')}>
<Image

Check failure on line 43 in src/components/templates/header/header.tsx

GitHub Actions / eslint-tsc

Property 'alt' is missing in type '{ src: string; width: "144"; height: "38"; }' but required in type '{ src: string | StaticImport; alt: string; width?: SafeNumber | undefined; height?: SafeNumber | undefined; fill?: boolean | undefined; loader?: ImageLoader | undefined; ... 11 more ...; lazyRoot?: string | undefined; }'.
src={
'https://amplistore.wpengine.com/wp-content/themes/amplistore-dist/assets/images/amplitude-logo-white.jpg'
}