Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
200b996
tools: pin actions by hash for auto-start-ci.yml
gabibguti Feb 24, 2023
d65f189
tools: pin actions by hash for build-tarball.yml
gabibguti Feb 24, 2023
983f8be
tools: pin actions by hash for build-windows.yml
gabibguti Feb 24, 2023
cc58092
tools: pin actions by hash for close-stale-feature-requests.yml
gabibguti Feb 24, 2023
1636294
tools: pin actions by hash for close-stalled.yml
gabibguti Feb 24, 2023
146b57a
tools: pin actions by hash for commit-lint.yml
gabibguti Feb 24, 2023
a80c4ad
tools: pin actions by hash for commit-queue.yml
gabibguti Feb 24, 2023
1d517cf
tools: pin actions by hash for coverage-linux-without-intl.yml
gabibguti Feb 24, 2023
791d878
tools: pin actions by hash for coverage-windows.yml
gabibguti Feb 24, 2023
453a1ad
tools: pin actions by hash for daily-wpt-fyi.yml
gabibguti Feb 24, 2023
cc4244f
tools: pin actions by hash for daily.yml
gabibguti Feb 24, 2023
e089b98
tools: pin actions by hash for doc.yml
gabibguti Feb 24, 2023
346dffa
tools: pin actions by hash for find-inactive-collaborators.yml
gabibguti Feb 24, 2023
d369e03
tools: pin actions by hash for find-inactive-tsc.yml
gabibguti Feb 24, 2023
10c9ebb
tools: pin actions by hash for label-pr.yml
gabibguti Feb 24, 2023
dadcdb4
tools: pin actions by hash for license-builder.yml
gabibguti Feb 24, 2023
dc760a5
tools: pin actions by hash for linters.yml
gabibguti Feb 24, 2023
7365fb5
tools: pin actions by hash for test-asan.yml
gabibguti Feb 24, 2023
a77c340
tools: pin actions by hash for test-internet.yml
gabibguti Feb 24, 2023
f7332c7
tools: pin actions by hash for test-linux.yml
gabibguti Feb 24, 2023
3a22ed6
tools: pin actions by hash for test-macos.yml
gabibguti Feb 24, 2023
43c9e48
tools: pin actions by hash for timezone-update.yml
gabibguti Feb 24, 2023
9105f37
tools: pin actions by hash for tools.yml
gabibguti Feb 24, 2023
62a7404
tools: fix lint single space before commment error
gabibguti Feb 24, 2023
a5a220e
tools: fix space before comment in coverage-linux.yml
gabibguti Mar 27, 2023
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
Prev Previous commit
Next Next commit
tools: pin actions by hash for doc.yml
Signed-off-by: Gabriela Gutierrez <gabigutierrez@google.com>
  • Loading branch information
gabibguti committed Mar 27, 2023
commit e089b98947036f642517342d51bee623d6410ba5
6 changes: 3 additions & 3 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@ jobs:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
with:
persist-credentials: false
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
with:
node-version: ${{ env.NODE_VERSION }}
- name: Environment Information
run: npx envinfo
- name: Build
run: NODE=$(command -v node) make doc-only
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
with:
name: docs
path: out/doc
Expand Down