Skip to content

ci: bump actions/cache from 5.0.3 to 5.0.4#21002

Merged
BeryJu merged 1 commit intomainfrom
dependabot/github_actions/actions/cache-5.0.4
Mar 19, 2026
Merged

ci: bump actions/cache from 5.0.3 to 5.0.4#21002
BeryJu merged 1 commit intomainfrom
dependabot/github_actions/actions/cache-5.0.4

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 19, 2026

Bumps actions/cache from 5.0.3 to 5.0.4.

Release notes

Sourced from actions/cache's releases.

v5.0.4

What's Changed

New Contributors

Full Changelog: actions/cache@v5...v5.0.4

Changelog

Sourced from actions/cache's changelog.

Releases

How to prepare a release

[!NOTE]
Relevant for maintainers with write access only.

  1. Switch to a new branch from main.
  2. Run npm test to ensure all tests are passing.
  3. Update the version in https://github.com/actions/cache/blob/main/package.json.
  4. Run npm run build to update the compiled files.
  5. Update this https://github.com/actions/cache/blob/main/RELEASES.md with the new version and changes in the ## Changelog section.
  6. Run licensed cache to update the license report.
  7. Run licensed status and resolve any warnings by updating the https://github.com/actions/cache/blob/main/.licensed.yml file with the exceptions.
  8. Commit your changes and push your branch upstream.
  9. Open a pull request against main and get it reviewed and merged.
  10. Draft a new release https://github.com/actions/cache/releases use the same version number used in package.json
    1. Create a new tag with the version number.
    2. Auto generate release notes and update them to match the changes you made in RELEASES.md.
    3. Toggle the set as the latest release option.
    4. Publish the release.
  11. Navigate to https://github.com/actions/cache/actions/workflows/release-new-action-version.yml
    1. There should be a workflow run queued with the same version number.
    2. Approve the run to publish the new version and update the major tags for this action.

Changelog

5.0.4

  • Bump minimatch to v3.1.5 (fixes ReDoS via globstar patterns)
  • Bump undici to v6.24.1 (WebSocket decompression bomb protection, header validation fixes)
  • Bump fast-xml-parser to v5.5.6

5.0.3

5.0.2

  • Bump @actions/cache to v5.0.3 #1692

5.0.1

  • Update @azure/storage-blob to ^12.29.1 via @actions/cache@5.0.1 #1685

5.0.0

[!IMPORTANT] actions/cache@v5 runs on the Node.js 24 runtime and requires a minimum Actions Runner version of 2.327.1.

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [actions/cache](https://github.com/actions/cache) from 5.0.3 to 5.0.4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@cdf6c1f...6682284)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-version: 5.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 19, 2026
@dependabot dependabot bot requested a review from a team as a code owner March 19, 2026 04:08
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 19, 2026
@netlify
Copy link

netlify bot commented Mar 19, 2026

Deploy Preview for authentik-docs ready!

Name Link
🔨 Latest commit b2d6f3b
🔍 Latest deploy log https://app.netlify.com/projects/authentik-docs/deploys/69bb76bf4eb29a0008d75065
😎 Deploy Preview https://deploy-preview-21002--authentik-docs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@codecov
Copy link

codecov bot commented Mar 19, 2026

❌ 1 Tests Failed:

Tests completed Failed Passed Skipped
3119 1 3118 2
View the top 1 failed test(s) by shortest run time
authentik.brands.tests.TestBrands::test_blueprint
Stack Traces | 2.14s run time
self = <unittest.case._Outcome object at 0x7f868985e190>
test_case = <authentik.brands.tests.TestBrands testMethod=test_blueprint>
subTest = False

    @contextlib.contextmanager
    def testPartExecutor(self, test_case, subTest=False):
        old_success = self.success
        self.success = True
        try:
>           yield

.../hostedtoolcache/Python/3.14.3................../x64/lib/python3.14/unittest/case.py:58: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <authentik.brands.tests.TestBrands testMethod=test_blueprint>
result = <TestCaseFunction test_blueprint>

    def run(self, result=None):
        if result is None:
            result = self.defaultTestResult()
            startTestRun = getattr(result, 'startTestRun', None)
            stopTestRun = getattr(result, 'stopTestRun', None)
            if startTestRun is not None:
                startTestRun()
        else:
            stopTestRun = None
    
        result.startTest(self)
        try:
            testMethod = getattr(self, self._testMethodName)
            if (getattr(self.__class__, "__unittest_skip__", False) or
                getattr(testMethod, "__unittest_skip__", False)):
                # If the class or method was skipped.
                skip_why = (getattr(self.__class__, '__unittest_skip_why__', '')
                            or getattr(testMethod, '__unittest_skip_why__', ''))
                _addSkip(result, self, skip_why)
                return result
    
            expecting_failure = (
                getattr(self, "__unittest_expecting_failure__", False) or
                getattr(testMethod, "__unittest_expecting_failure__", False)
            )
            outcome = _Outcome(result)
            start_time = time.perf_counter()
            try:
                self._outcome = outcome
    
                with outcome.testPartExecutor(self):
                    self._callSetUp()
                if outcome.success:
                    outcome.expecting_failure = expecting_failure
                    with outcome.testPartExecutor(self):
>                       self._callTestMethod(testMethod)

.../hostedtoolcache/Python/3.14.3................../x64/lib/python3.14/unittest/case.py:669: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <authentik.brands.tests.TestBrands testMethod=test_blueprint>
method = <bound method TestBrands.test_blueprint of <authentik.brands.tests.TestBrands testMethod=test_blueprint>>

    def _callTestMethod(self, method):
>       result = method()
                 ^^^^^^^^

.../hostedtoolcache/Python/3.14.3................../x64/lib/python3.14/unittest/case.py:615: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

args = (<authentik.brands.tests.TestBrands testMethod=test_blueprint>,)
kwargs = {}, file = 'default/default-brand.yaml'
content = 'metadata:\n  name: Default - Brand\nversion: 1\nentries:\n  - model: authentik_blueprints.metaapplyblueprint\n    att...exists\n      - !Condition [NOR, !Find [authentik_brands.brand, [default, True]]]\n    model: authentik_brands.brand\n'

    @wraps(func)
    def wrapper(*args, **kwargs):
        for file in files:
            content = BlueprintInstance(path=file).retrieve()
            Importer.from_string(content).apply()
>       return func(*args, **kwargs)
               ^^^^^^^^^^^^^^^^^^^^^

.../blueprints/tests/__init__.py:25: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <authentik.brands.tests.TestBrands testMethod=test_blueprint>

    @apply_blueprint("default/default-brand.yaml")
    def test_blueprint(self):
        """Test Current brand API"""
        response = loads(self.client.get(reverse("authentik_api:brand-current")).content.decode())
        response.pop("flow_authentication", None)
        response.pop("flow_invalidation", None)
        response.pop("flow_user_settings", None)
>       self.assertEqual(
            response,
            {
                "branding_logo": ".../assets/icons/icon_left_brand.svg",
                "branding_logo_themed_urls": None,
                "branding_favicon": ".../assets/icons/icon.png",
                "branding_favicon_themed_urls": None,
                "branding_title": "authentik",
                "branding_custom_css": "",
                "matched_domain": "authentik-default",
                "ui_footer_links": [],
                "ui_theme": "automatic",
                "default_locale": "",
                "flags": self.default_flags,
            },
        )

authentik/brands/tests.py:96: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <authentik.brands.tests.TestBrands testMethod=test_blueprint>
first = {'branding_custom_css': '', 'branding_favicon': '.../assets/icons/icon.png', 'branding_favicon_themed_urls': None, 'branding_logo': '.../assets/icons/icon_left_brand.svg', ...}
second = {'branding_custom_css': '', 'branding_favicon': '.../assets/icons/icon.png', 'branding_favicon_themed_urls': None, 'branding_logo': '.../assets/icons/icon_left_brand.svg', ...}
msg = None

    def assertEqual(self, first, second, msg=None):
        """Fail if the two objects are unequal as determined by the '=='
           operator.
        """
        assertion_func = self._getAssertEqualityFunc(first, second)
>       assertion_func(first, second, msg=msg)

.../hostedtoolcache/Python/3.14.3................../x64/lib/python3.14/unittest/case.py:925: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <authentik.brands.tests.TestBrands testMethod=test_blueprint>
d1 = {'branding_custom_css': '', 'branding_favicon': '.../assets/icons/icon.png', 'branding_favicon_themed_urls': None, 'branding_logo': '.../assets/icons/icon_left_brand.svg', ...}
d2 = {'branding_custom_css': '', 'branding_favicon': '.../assets/icons/icon.png', 'branding_favicon_themed_urls': None, 'branding_logo': '.../assets/icons/icon_left_brand.svg', ...}
msg = None

    def assertDictEqual(self, d1, d2, msg=None):
        self.assertIsInstance(d1, dict, 'First argument is not a dictionary')
        self.assertIsInstance(d2, dict, 'Second argument is not a dictionary')
    
        if d1 != d2:
            standardMsg = '%s != %s' % _common_shorten_repr(d1, d2)
            diff = ('\n' + '\n'.join(difflib.ndiff(
                           pprint.pformat(d1).splitlines(),
                           pprint.pformat(d2).splitlines())))
            standardMsg = self._truncateMessage(standardMsg, diff)
>           self.fail(self._formatMessage(msg, standardMsg))

.../hostedtoolcache/Python/3.14.3................../x64/lib/python3.14/unittest/case.py:1224: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <authentik.brands.tests.TestBrands testMethod=test_blueprint>
msg = "{'matched_domain': 'authentik-default', 'br[391 chars]lse}} != {'branding_logo': '.../dist/assets/icon[419 chars]...test_flag': False},\n   'matched_domain': 'authentik-default',\n   'ui_footer_links': [],\n   'ui_theme': 'automatic'}"

    def fail(self, msg=None):
        """Fail immediately, with the given message."""
>       raise self.failureException(msg)
E       AssertionError: {'matched_domain': 'authentik-default', 'br[391 chars]lse}} != {'branding_logo': '.../dist/assets/icon[419 chars]lse}}
E         {'branding_custom_css': '',
E          'branding_favicon': '.../assets/icons/icon.png',
E          'branding_favicon_themed_urls': None,
E          'branding_logo': '.../assets/icons/icon_left_brand.svg',
E          'branding_logo_themed_urls': None,
E          'branding_title': 'authentik',
E          'default_locale': '',
E       -  'flags': {'flows_continuous_login': False, 'flows_refresh_others': False},
E       +  'flags': {'flows_continuous_login': False,
E       +            'flows_refresh_others': False,
E       +            'tenants_test_flag': False},
E          'matched_domain': 'authentik-default',
E          'ui_footer_links': [],
E          'ui_theme': 'automatic'}

.../hostedtoolcache/Python/3.14.3................../x64/lib/python3.14/unittest/case.py:750: AssertionError

To view more test analytics, go to the Test Analytics Dashboard
📋 Got 3 mins? Take this short survey to help us improve Test Analytics.

@rissson rissson enabled auto-merge (squash) March 19, 2026 13:04
@BeryJu BeryJu disabled auto-merge March 19, 2026 14:49
@BeryJu BeryJu merged commit 03b23b8 into main Mar 19, 2026
139 of 145 checks passed
@BeryJu BeryJu deleted the dependabot/github_actions/actions/cache-5.0.4 branch March 19, 2026 14:49
kensternberg-authentik added a commit that referenced this pull request Mar 24, 2026
* main:
  web: link file picker to docs (#20995)
  web/flow: reset stale authenticator selection between consecutive validate stages (#20802)
  ci: bump actions/cache from 5.0.3 to 5.0.4 (#21002)
  root: init rust workspace (#20983)
  website/docs: fix swapped sidebar label (#21011)
  core: bump goauthentik/fips-python from `ec5c4cd` to `859ad57` in /lifecycle/container (#21003)
  core: bump goauthentik/fips-debian from `a613b75` to `7baeeaa` in /lifecycle/container (#21001)
  core: bump djangorestframework from 3.16.1 to 3.17.0 (#21000)
  lifecycle/aws: bump aws-cdk from 2.1111.0 to 2.1112.0 in /lifecycle/aws (#20999)
  ci: bump codecov/codecov-action from 5.5.2 to 5.5.3 in /.github/actions/test-results (#21004)
  web: bump the storybook group across 1 directory with 5 updates (#21005)
  web: bump knip from 5.87.0 to 5.88.0 in /web (#21006)
  web: bump @formatjs/intl-listformat from 8.2.3 to 8.3.1 in /web (#21007)
  website/docs: update kubernetes install guide for Gateway API (#20961)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant