Skip to content

Conversation

@Gargleblaster-RBMK
Copy link
Collaborator

fixes #152

@Gargleblaster-RBMK Gargleblaster-RBMK linked an issue Dec 25, 2025 that may be closed by this pull request
Gargleblaster-RBMK and others added 23 commits December 26, 2025 18:45
added all images from main
also the button input is optional, when ommitted no button is placed, when not a link must be applied in order for it to redirect
Signed-off-by: Dr. Alto Clef <Preble.louden@gmail.com>
Signed-off-by: fdseilix <113546585+fdseilix@users.noreply.github.com>
Signed-off-by: fdseilix <113546585+fdseilix@users.noreply.github.com>
Signed-off-by: fdseilix <113546585+fdseilix@users.noreply.github.com>
Signed-off-by: fdseilix <113546585+fdseilix@users.noreply.github.com>
Removed the Docker installation steps to streamline the build process.

Signed-off-by: fdseilix <113546585+fdseilix@users.noreply.github.com>
Signed-off-by: fdseilix <113546585+fdseilix@users.noreply.github.com>
fdseilix and others added 4 commits January 1, 2026 11:19
Signed-off-by: fdseilix <113546585+fdseilix@users.noreply.github.com>
Removed global installations of @sveltejs/kit and daisyui.

Signed-off-by: fdseilix <113546585+fdseilix@users.noreply.github.com>
Comment on lines +12 to +28
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Log in to Container Registry
uses: docker/login-action@v3
with:
registry: docker.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build Docker images
run: docker build -f dockerfile -t vfxd9/oakrige-wiki:frontend .

- name: Push Docker images
run: docker push vfxd9/oakrige-wiki:frontend

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: {contents: read}

Copilot Autofix

AI 9 days ago

In general, the fix is to explicitly define a permissions: block that restricts the GITHUB_TOKEN to the minimal scope needed. For this workflow, the job only requires read access to repository contents to allow actions/checkout to work; it does not create releases, push commits, or modify issues/PRs, so contents: read is sufficient and safe. We can set this at the top (workflow) level so it applies to all jobs that lack their own permissions: block.

Concretely, in .github/workflows/Deploy.yml, add a permissions: section right after the name: Deploy line (before on:), with contents: read. This will ensure the GITHUB_TOKEN has read-only access to repository contents and no write access or additional scopes, without altering any existing steps or functionality. No imports or extra definitions are needed because this is purely a YAML configuration change within the workflow file.

Suggested changeset 1
.github/workflows/Deploy.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/Deploy.yml b/.github/workflows/Deploy.yml
--- a/.github/workflows/Deploy.yml
+++ b/.github/workflows/Deploy.yml
@@ -1,4 +1,6 @@
 name: Deploy
+permissions:
+    contents: read
 
 on:
     push:
EOF
@@ -1,4 +1,6 @@
name: Deploy
permissions:
contents: read

on:
push:
Copilot is powered by AI and may make mistakes. Always verify output.
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.

Migrate to svelte

4 participants