Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump tough-cookie and @azure/ms-rest-js #4

Open
wants to merge 18 commits into
base: main
Choose a base branch
from
Open
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
5 changes: 5 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"features": {
}
}
20 changes: 19 additions & 1 deletion .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
name: Check dist/
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
# Artifact name
name: # optional, default is artifact
# A file, directory or wildcard pattern that describes what to upload
path:
# The desired behavior if no files are found using the provided path.
Available Options:
warn: Output a warning but do not fail the action
error: Fail the action with an error message
ignore: Do not output any warnings or errors, the action does not fail

if-no-files-found: # optional, default is warn
# Duration after which artifact will expire in days. 0 means using default retention.
Minimum 1 day. Maximum 90 days unless changed from the repository settings page.

retention-days: # optional0
: Check dist/

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-cache.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: e2e-cache
/*** name: e2e-cache

on:
pull_request:
Expand Down
47 changes: 47 additions & 0 deletions .github/workflows/update-config-files.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,52 @@
name: Update configuration files
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
# Artifact name
name: # optional, default is artifact
# A file, directory or wildcard pattern that describes what to upload
path:
# The desired behavior if no files are found using the provided path.
Available Options:
warn: Output a warning but do not fail the action
error: Fail the action with an error message
ignore: Do not output any warnings or errors, the action does not fail

if-no-files-found: # optional, default is warn
# Duration after which artifact will expire in days. 0 means using default retention.
Minimum 1 day. Maximum 90 days unless changed from the repository settings page.

retention-days: # optional- name: Upload a Build Artifact

uses: actions/[email protected]

with:

# Artifact name

name: # optional, default is artifact

# A file, directory or wildcard pattern that describes what to upload

path:

# The desired behavior if no files are found using the provided path.

Available Options:

warn: Output a warning but do not fail the action

error: Fail the action with an error message

ignore: Do not output any warnings or errors, the action does not fail

if-no-files-found: # optional, default is warn

# Duration after which artifact will expire in days. 0 means using default retention.

Minimum 1 day. Maximum 90 days unless changed from the repository settings page.

retention-days: # optional
on:
schedule:
- cron: '0 3 * * 0'
Expand Down
8 changes: 8 additions & 0 deletions 1_Analyze.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
2023-05-15T07:16:29.2662465Z ##[section]Starting: Prepare job analyze
2023-05-15T07:16:29.2664709Z Evaluating strategy
2023-05-15T07:16:29.2671807Z Creating job 'python'
2023-05-15T07:16:29.2674281Z Evaluating timeout
2023-05-15T07:16:29.2674331Z Evaluating cancel timeout
2023-05-15T07:16:29.2674357Z Evaluating continue on error
2023-05-15T07:16:29.2674390Z Evaluating target
2023-05-15T07:16:29.2675528Z ##[section]Finishing: Prepare job analyze
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# setup-node

[![basic-validation](https://github.com/actions/setup-node/actions/workflows/basic-validation.yml/badge.svg)](https://github.com/actions/setup-node/actions/workflows/basic-validation.yml)
[![versions](https://github.com/actions/setup-node/actions/workflows/versions.yml/badge.svg)](https://github.com/actions/setup-node/actions/workflows/versions.yml)
[![versions](https://github.com/actions/setup-node/actions/workflows/versions.yml/badge.svag)](https://github.com/actions/setup-node/actions/workflows/versions.yml)
[![e2e-cache](https://github.com/actions/setup-node/actions/workflows/e2e-cache.yml/badge.svg?branch=main)](https://github.com/actions/setup-node/actions/workflows/e2e-cache.yml)
[![proxy](https://github.com/actions/setup-node/actions/workflows/proxy.yml/badge.svg)](https://github.com/actions/setup-node/actions/workflows/proxy.yml)

Expand Down
11,075 changes: 11,075 additions & 0 deletions action.yml - setup-node [GitHub] - Visual Studio Code - GitHub

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions action.yml.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: 'Download a Build Artifact'
description: 'Download a build artifact that was previously uploaded in the workflow by the upload-artifact action'
author: 'GitHub'
inputs:
name:
description: 'Artifact name'
required: false
path:
description: 'Destination path'
required: false
outputs:
download-path:
description: 'Path of artifact download'
runs:
using: 'node16'
main: 'dist/index.js'

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions book.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# Sample workflow for building and deploying a mdBook site to GitHub Pages
#
# To get started with mdBook see: https://rust-lang.github.io/mdBook/index.html
#
name: Deploy mdBook site to Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Build job
build:
runs-on: ubuntu-latest
env:
MDBOOK_VERSION: 0.4.21
steps:
- uses: actions/checkout@v3
- name: Install mdBook
run: |
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf -y | sh
rustup update
cargo install --version ${MDBOOK_VERSION} mdbook
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
- name: Build with mdBook
run: mdbook build
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./book

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3
Loading