Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/setup-node@v4
with:
node-version: 20
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Log in to the Container registry
uses: docker/login-action@v3

Check failure on line 22 in .github/workflows/publish.yaml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Use full commit SHA hash for this dependency.

See more on https://sonarcloud.io/project/issues?id=isaaccomputerscience_isaac-react-app&issues=AZ7vt43jZeQQZKGC6N1W&open=AZ7vt43jZeQQZKGC6N1W&pullRequest=428
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta cs
id: meta-cs
uses: docker/metadata-action@v5

Check failure on line 29 in .github/workflows/publish.yaml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Use full commit SHA hash for this dependency.

See more on https://sonarcloud.io/project/issues?id=isaaccomputerscience_isaac-react-app&issues=AZ7vt43jZeQQZKGC6N1X&open=AZ7vt43jZeQQZKGC6N1X&pullRequest=428
with:
images: ghcr.io/${{ github.repository }}-cs
tags: |
Expand All @@ -45,7 +45,7 @@
# tag event
type=ref,event=tag
- name: Build and push cs Docker image
uses: docker/build-push-action@v6

Check failure on line 48 in .github/workflows/publish.yaml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Use full commit SHA hash for this dependency.

See more on https://sonarcloud.io/project/issues?id=isaaccomputerscience_isaac-react-app&issues=AZ7vt43jZeQQZKGC6N1Y&open=AZ7vt43jZeQQZKGC6N1Y&pullRequest=428
with:
file: Dockerfile-react
context: .
Expand All @@ -55,7 +55,7 @@
tags: ${{ steps.meta-cs.outputs.tags }}
labels: ${{ steps.meta-cs.outputs.labels }}
- name: Build and push cs-renderer Docker image
uses: docker/build-push-action@v6

Check failure on line 58 in .github/workflows/publish.yaml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Use full commit SHA hash for this dependency.

See more on https://sonarcloud.io/project/issues?id=isaaccomputerscience_isaac-react-app&issues=AZ7vt43jZeQQZKGC6N1Z&open=AZ7vt43jZeQQZKGC6N1Z&pullRequest=428
with:
file: Dockerfile-react
context: .
Expand Down
Loading