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/cloud-run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:

- name: Docker Auth
id: docker-auth
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
with:
username: 'oauth2accesstoken'
password: '${{ steps.auth.outputs.access_token }}'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compile-ai-docs-from-gcs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ jobs:

- name: Login to GHCR
if: github.ref == 'refs/heads/main'
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compile-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}

- name: Validate repositories
run: |

Check warning on line 83 in .github/workflows/compile-docs.yml

View workflow job for this annotation

GitHub Actions / Action lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2162:info:10:106: read without -r will mangle backslashes [shellcheck] Raw Output: i:.github/workflows/compile-docs.yml:83:7: shellcheck reported issue in this script: SC2162:info:10:106: read without -r will mangle backslashes [shellcheck]
# Verify we have the expected repositories
for repo in edu courses images-private; do
if [ ! -d "$repo" ]; then
Expand Down Expand Up @@ -114,13 +114,13 @@
fi

- name: Set environment variable for GitHub Actions
run: echo "GITHUB_ACTIONS=true" >> $GITHUB_ENV

Check warning on line 117 in .github/workflows/compile-docs.yml

View workflow job for this annotation

GitHub Actions / Action lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:31: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/compile-docs.yml:117:7: shellcheck reported issue in this script: SC2086:info:1:31: Double quote to prevent globbing and word splitting [shellcheck]

- name: Create temporary directory
run: echo "TEMP_BUILD_DIR=$(mktemp -d)" >> $GITHUB_ENV

Check warning on line 120 in .github/workflows/compile-docs.yml

View workflow job for this annotation

GitHub Actions / Action lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:39: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/compile-docs.yml:120:7: shellcheck reported issue in this script: SC2086:info:1:39: Double quote to prevent globbing and word splitting [shellcheck]

- name: Compile documentation with resource limits
run: |

Check warning on line 123 in .github/workflows/compile-docs.yml

View workflow job for this annotation

GitHub Actions / Action lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:6:54: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/compile-docs.yml:123:7: shellcheck reported issue in this script: SC2086:info:6:54: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 123 in .github/workflows/compile-docs.yml

View workflow job for this annotation

GitHub Actions / Action lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:3:10: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/compile-docs.yml:123:7: shellcheck reported issue in this script: SC2086:info:3:10: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 123 in .github/workflows/compile-docs.yml

View workflow job for this annotation

GitHub Actions / Action lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:11:8: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/compile-docs.yml:123:7: shellcheck reported issue in this script: SC2086:info:11:8: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 123 in .github/workflows/compile-docs.yml

View workflow job for this annotation

GitHub Actions / Action lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:10:20: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/compile-docs.yml:123:7: shellcheck reported issue in this script: SC2086:info:10:20: Double quote to prevent globbing and word splitting [shellcheck]
cd edu
# Create output directory
mkdir -p $TEMP_BUILD_DIR
Expand Down Expand Up @@ -200,7 +200,7 @@

- name: Login to GHCR
if: github.ref == 'refs/heads/main'
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compile-public-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
fi

- name: Compile public documentation
run: |

Check warning on line 84 in .github/workflows/compile-public-docs.yml

View workflow job for this annotation

GitHub Actions / Action lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2162:info:15:72: read without -r will mangle backslashes [shellcheck] Raw Output: i:.github/workflows/compile-public-docs.yml:84:7: shellcheck reported issue in this script: SC2162:info:15:72: read without -r will mangle backslashes [shellcheck]

Check warning on line 84 in .github/workflows/compile-public-docs.yml

View workflow job for this annotation

GitHub Actions / Action lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2012:info:21:1: Use find instead of ls to better handle non-alphanumeric filenames [shellcheck] Raw Output: i:.github/workflows/compile-public-docs.yml:84:7: shellcheck reported issue in this script: SC2012:info:21:1: Use find instead of ls to better handle non-alphanumeric filenames [shellcheck]

Check warning on line 84 in .github/workflows/compile-public-docs.yml

View workflow job for this annotation

GitHub Actions / Action lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2012:info:17:22: Use find instead of ls to better handle non-alphanumeric filenames [shellcheck] Raw Output: i:.github/workflows/compile-public-docs.yml:84:7: shellcheck reported issue in this script: SC2012:info:17:22: Use find instead of ls to better handle non-alphanumeric filenames [shellcheck]
# Create placeholder directories for private repos
mkdir -p ../courses
mkdir -p ../images-private
Expand Down Expand Up @@ -202,7 +202,7 @@

- name: Login to GHCR
if: github.ref == 'refs/heads/main'
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down
Loading