diff --git a/.github/workflows/triage.lock.yml b/.github/workflows/triage.lock.yml index b8dfbba..7792c39 100644 --- a/.github/workflows/triage.lock.yml +++ b/.github/workflows/triage.lock.yml @@ -324,7 +324,7 @@ jobs: - name: Create cache-memory directory run: bash ${RUNNER_TEMP}/gh-aw/actions/create_cache_memory_dir.sh - name: Restore cache-memory file share data - uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: key: memory-${{ env.GH_AW_WORKFLOW_ID_SANITIZED }}-${{ github.run_id }} path: /tmp/gh-aw/cache-memory @@ -1157,7 +1157,7 @@ jobs: fi - name: Save cache-memory to cache (default) if: steps.check_cache_default.outputs.has_content == 'true' - uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: key: memory-${{ env.GH_AW_WORKFLOW_ID_SANITIZED }}-${{ github.run_id }} path: /tmp/gh-aw/cache-memory diff --git a/docs-index.html b/docs-index.html index 228e0bc..b3f3fc6 100644 --- a/docs-index.html +++ b/docs-index.html @@ -38,6 +38,8 @@

Documentation Files

  • numberFormat.md
  • panic.md
  • panic_core.md
  • +
  • popScene.md
  • +
  • pushScene.md
  • raw_infinite_for_loops.md
  • reading-makecode-docs-clearly.md
  • reading_rendered_help_sources.md
  • diff --git a/docs/JavaScript/loops/raw_for_loops.md b/docs/JavaScript/loops/raw_for_loops.md new file mode 100644 index 0000000..d450574 --- /dev/null +++ b/docs/JavaScript/loops/raw_for_loops.md @@ -0,0 +1,9 @@ +An infinite for loop is a loop that runs synchronously (operating). + +Here is a code snippet of it. + +``` ts + for (;;) { + // Add code here + } +```