Skip to content

Update 8hobbies/workflows digest to 616ac68 #206

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

Merged
merged 1 commit into from
May 18, 2025
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 18, 2025

This PR contains the following updates:

Package Type Update Change
8hobbies/workflows action digest 54ddf1f -> 616ac68

Configuration

📅 Schedule: Branch creation - "on Sunday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from xuhdev as a code owner May 18, 2025 03:59
@renovate renovate bot enabled auto-merge (squash) May 18, 2025 03:59
@@ -22,4 +22,4 @@

jobs:
lint:
uses: 8hobbies/workflows/.github/workflows/npm-lint.yml@54ddf1fd51ecf0cbeacf0a05b4994d2a082b70b1
uses: 8hobbies/workflows/.github/workflows/npm-lint.yml@616ac6826b5e5cde9be46d78f98c2fe17e1234c2

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}

Copilot Autofix

AI 3 days ago

To fix the issue, add a permissions block at the root of the workflow to explicitly define the permissions required. Since this is a linting workflow, it likely only needs read access to the repository contents. The minimal permissions block would be:

permissions:
  contents: read

This ensures that the GITHUB_TOKEN has only the necessary permissions to perform the linting task, adhering to the principle of least privilege.


Suggested changeset 1
.github/workflows/lint.yml

Autofix patch

Autofix patch
Run the following command in your local git repository to apply this patch
cat << 'EOF' | git apply
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -16,2 +16,5 @@
 
+permissions:
+  contents: read
+
 on:
EOF
@@ -16,2 +16,5 @@

permissions:
contents: read

on:
Copilot is powered by AI and may make mistakes. Always verify output.
@@ -22,4 +22,4 @@

jobs:
run:
uses: 8hobbies/workflows/.github/workflows/npm-publish-dry-run.yml@54ddf1fd51ecf0cbeacf0a05b4994d2a082b70b1
uses: 8hobbies/workflows/.github/workflows/npm-publish-dry-run.yml@616ac6826b5e5cde9be46d78f98c2fe17e1234c2

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}

Copilot Autofix

AI 3 days ago

To fix the issue, we will add a permissions block at the root level of the workflow. This block will define the minimal permissions required for the workflow to function. Since the workflow is a "Publish Dry Run," it likely only needs read access to the repository contents. We will set contents: read as the default permission. If additional permissions are required by the reusable workflow, they can be added explicitly.


Suggested changeset 1
.github/workflows/publish-dry-run.yml

Autofix patch

Autofix patch
Run the following command in your local git repository to apply this patch
cat << 'EOF' | git apply
diff --git a/.github/workflows/publish-dry-run.yml b/.github/workflows/publish-dry-run.yml
--- a/.github/workflows/publish-dry-run.yml
+++ b/.github/workflows/publish-dry-run.yml
@@ -16,2 +16,5 @@
 
+permissions:
+  contents: read
+
 on:
EOF
@@ -16,2 +16,5 @@

permissions:
contents: read

on:
Copilot is powered by AI and may make mistakes. Always verify output.
@@ -22,4 +22,4 @@

jobs:
test:
uses: 8hobbies/workflows/.github/workflows/npm-runtime.yml@54ddf1fd51ecf0cbeacf0a05b4994d2a082b70b1
uses: 8hobbies/workflows/.github/workflows/npm-runtime.yml@616ac6826b5e5cde9be46d78f98c2fe17e1234c2

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}

Copilot Autofix

AI 3 days ago

To fix the issue, add a permissions block at the root of the workflow file. This block will explicitly define the permissions granted to the GITHUB_TOKEN. Based on the principle of least privilege, the minimal required permission for most workflows is contents: read. If additional permissions are required by the reusable workflow, they should be added explicitly.

The permissions block should be added after the name field and before the on field in the workflow file.


Suggested changeset 1
.github/workflows/runtime.yml

Autofix patch

Autofix patch
Run the following command in your local git repository to apply this patch
cat << 'EOF' | git apply
diff --git a/.github/workflows/runtime.yml b/.github/workflows/runtime.yml
--- a/.github/workflows/runtime.yml
+++ b/.github/workflows/runtime.yml
@@ -15,2 +15,4 @@
 name: Runtime
+permissions:
+  contents: read
 
EOF
@@ -15,2 +15,4 @@
name: Runtime
permissions:
contents: read

Copilot is powered by AI and may make mistakes. Always verify output.
@renovate renovate bot merged commit ee7470c into master May 18, 2025
13 checks passed
@renovate renovate bot deleted the renovate/all-digest branch May 18, 2025 04:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants