Skip to content
Merged
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/ng-renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
working-directory: ./.github/ng-renovate
- name: Setup UV
if: matrix.REPOSITORY == 'angular/web-codegen-scorer' # UV is only needed for web-codegen-scorer as it uses python.
uses: astral-sh/setup-uv@e06108dd0aef18192324c70427afc47652e63a82 # v7.5.0
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
- name: Setup Dart
if: matrix.REPOSITORY == 'angular/dev-infra' # Dart is only needed for rules_sass which is in dev-infra.
uses: dart-lang/setup-dart@e51d8e571e22473a2ddebf0ef8a2123f0ab2c02c # v1
Expand Down
4 changes: 2 additions & 2 deletions github-actions/bazel/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
using: composite
steps:
- name: Configure action caching for bazel version downloaded by bazelisk
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For improved readability and maintainability, consider using the version tag directly instead of the commit SHA. While pinning to a SHA is a secure practice, using a specific version tag like v5.0.4 is also secure against accidental updates and makes the workflow easier to understand at a glance.

      uses: actions/cache@v5.0.4

with:
path: |
~/.cache/bazelisk
Expand All @@ -27,7 +27,7 @@ runs:
shell: bash

- name: Configure action caching for bazel repository cache
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For improved readability and maintainability, consider using the version tag directly instead of the commit SHA. While pinning to a SHA is a secure practice, using a specific version tag like v5.0.4 is also secure against accidental updates and makes the workflow easier to understand at a glance.

      uses: actions/cache@v5.0.4

with:
# Note: Bazel repository cache is located in system locations and cannot use
# a shared cache between different runner operating systems.
Expand Down
Loading