Skip to content
This repository was archived by the owner on May 6, 2025. It is now read-only.

Commit a0eee02

Browse files
authored
feat: update github action files (#544)
1 parent 5afbc3f commit a0eee02

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/mega-linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
timeout-minutes: 30
1616
steps:
1717
- name: Checkout Code
18-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
18+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
1919

2020
- name: Restore lychee cache
2121
uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0

.github/workflows/release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
app-id: ${{ secrets.MY_RENOVATE_GITHUB_APP_ID }}
2222
private-key: ${{ secrets.MY_RENOVATE_GITHUB_PRIVATE_KEY }}
2323

24-
- uses: google-github-actions/release-please-action@e4dc86ba9405554aeba3c6bb2d169500e7d3b4ee # v4.1.1
24+
- uses: googleapis/release-please-action@7987652d64b4581673a76e33ad5e98e3dd56832f # v4.1.3
2525
with:
2626
release-type: simple
2727
token: ${{ steps.app-token.outputs.token }}

.github/workflows/renovate.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ on:
66
inputs:
77
dryRun:
88
type: boolean
9-
description: "Dry-Run"
9+
description: Dry-Run
1010
logLevel:
1111
type: choice
12-
description: "Log-Level"
12+
description: Log-Level
1313
default: debug
1414
options:
1515
- info
@@ -20,11 +20,11 @@ on:
2020
- main
2121
- "!renovate/*"
2222
schedule:
23-
- cron: "0 0-3 * * 0"
23+
- cron: 0 0-3 * * 0
2424

2525
env:
2626
# https://docs.renovatebot.com/troubleshooting/#log-debug-levels
27-
LOG_LEVEL: "${{ inputs.logLevel || 'debug' }}"
27+
LOG_LEVEL: ${{ inputs.logLevel || 'debug' }}
2828
# https://docs.renovatebot.com/self-hosted-configuration/#repositories
2929
RENOVATE_REPOSITORIES: ${{ github.repository }}
3030
# https://docs.renovatebot.com/self-hosted-configuration/#username
@@ -33,9 +33,9 @@ env:
3333
RENOVATE_PLATFORM_COMMIT: "true"
3434
# https://docs.renovatebot.com/self-hosted-configuration/#dryrun
3535
# Run renovate in dry-run mode if executed in branches other than main - prevents versions in PRs/branches from being updated
36-
RENOVATE_DRY_RUN: "${{ inputs.dryRun || ( github.head_ref || github.ref_name ) != 'main' || false }}"
36+
RENOVATE_DRY_RUN: ${{ inputs.dryRun || ( github.head_ref || github.ref_name ) != 'main' || false }}
3737
# Renovate Automerge
38-
RENOVATE_AUTOMERGE_TYPE: "branch"
38+
RENOVATE_AUTOMERGE_TYPE: branch
3939
RENOVATE_AUTOMERGE: "true"
4040

4141
permissions: read-all
@@ -48,7 +48,7 @@ jobs:
4848
permissions: write-all
4949
steps:
5050
- name: Checkout
51-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
51+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
5252

5353
- uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
5454
id: app-token
@@ -57,6 +57,6 @@ jobs:
5757
private-key: ${{ secrets.MY_RENOVATE_GITHUB_PRIVATE_KEY }}
5858

5959
- name: 💡 Self-hosted Renovate
60-
uses: renovatebot/github-action@259200be4d976a76196ec8985b0dddcaf1733b47 # v40.2.0
60+
uses: renovatebot/github-action@a1ed1d0adddfdf138192d1fbe3150a80094dee6a # v40.3.1
6161
with:
6262
token: ${{ steps.app-token.outputs.token }}

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: stale
44
on:
55
workflow_dispatch:
66
schedule:
7-
- cron: "9 9 * * *"
7+
- cron: 9 9 * * *
88

99
permissions:
1010
issues: write

0 commit comments

Comments
 (0)