Skip to content

Commit

Permalink
Update Github Actions dependencies
Browse files Browse the repository at this point in the history
- This finally fixes warnings about the deprecated node16 being used for CLAssistant.
- Use short-form for dependencies in BUILD.dawn
  • Loading branch information
fhanau committed Sep 4, 2024
1 parent 07f0e29 commit dc04113
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- name: "CLA Assistant"
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
uses: contributor-assistant/github-action@v2.4.0
uses: contributor-assistant/github-action@v2.5.1
env:
# CLA Action uses this in-built GitHub token to make the API calls for interacting with GitHub.
# It is built into Github Actions and does not need to be manually specified in your secrets store.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Add issue to GH project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v0.6.0
- uses: actions/add-to-project@v1.0.2
with:
project-url: https://github.com/orgs/cloudflare/projects/1
github-token: ${{ secrets.DEVPROD_PAT }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
env:
WORKERD_VERSION: ${{ needs.version.outputs.version }}
LATEST_COMPATIBILITY_DATE: ${{ needs.version.outputs.date }}
- uses: robinraju/release-downloader@v1.9
- uses: robinraju/release-downloader@v1.11
with:
tag: v${{ needs.version.outputs.release_version }}
fileName: workerd-${{ matrix.arch }}.gz
Expand Down
4 changes: 2 additions & 2 deletions build/BUILD.dawn
Original file line number Diff line number Diff line change
Expand Up @@ -1103,9 +1103,9 @@ cc_library(
],
visibility = ["//visibility:public"],
deps = [
"//src/tint/lang/wgsl/features",
"@com_google_absl//absl/container:flat_hash_map",
"@com_google_absl//absl/container:flat_hash_set",
"@dawn//src/tint/lang/wgsl/features",
],
)

Expand Down Expand Up @@ -1144,6 +1144,6 @@ cc_library(
includes = ["include"],
visibility = ["//visibility:public"],
deps = [
"@dawn//src/tint/api",
"//src/tint/api",
],
)

0 comments on commit dc04113

Please sign in to comment.