chore(deps): lock file maintenance (#3190)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC),
Automerge - "before 4am" (UTC).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/woodpecker-ci/woodpecker).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: qwerty287 <qwerty287@posteo.de>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot] 2024-01-15 08:32:17 +01:00 committed by GitHub
parent 10f2e209d6
commit 7eff20d1b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 1971 additions and 1906 deletions

View file

@ -41,7 +41,7 @@ As an alternative, you can install an agent running the local backend directly o
### Deprecated `platform` filter
The `platform` filter has been removed. Use the more advanced labels instead ([read more](./docs/usage/workflow-syntax#filter-by-platform)).
The `platform` filter has been removed. Use the more advanced labels instead ([read more](../docs/usage/workflow-syntax#filter-by-platform)).
### Update Docker to v24

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -23,10 +23,9 @@ if (!repo || !repoPermissions) {
}
const allPipelines = inject<Ref<Pipeline[]>>('pipelines');
const pipelines = computed(
() =>
allPipelines?.value.filter(
(b) => b.branch === branch.value && b.event !== 'pull_request' && b.event !== 'pull_request_closed',
),
const pipelines = computed(() =>
allPipelines?.value.filter(
(b) => b.branch === branch.value && b.event !== 'pull_request' && b.event !== 'pull_request_closed',
),
);
</script>

View file

@ -25,16 +25,15 @@ if (!repo.value.pr_enabled || !repo.value.allow_pr) {
}
const allPipelines = inject<Ref<Pipeline[]>>('pipelines');
const pipelines = computed(
() =>
allPipelines?.value.filter(
(b) =>
(b.event === 'pull_request' || b.event === 'pull_request_closed') &&
b.ref
.replaceAll('refs/pull/', '')
.replaceAll('refs/merge-requests/', '')
.replaceAll('/merge', '')
.replaceAll('/head', '') === pullRequest.value,
),
const pipelines = computed(() =>
allPipelines?.value.filter(
(b) =>
(b.event === 'pull_request' || b.event === 'pull_request_closed') &&
b.ref
.replaceAll('refs/pull/', '')
.replaceAll('refs/merge-requests/', '')
.replaceAll('/merge', '')
.replaceAll('/head', '') === pullRequest.value,
),
);
</script>