[Snyk] Security upgrade hono from 2.7.8 to 4.6.5 #60
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Pull Request Prerelease | |
on: pull_request | |
jobs: | |
build: | |
if: ${{ github.repository_owner == 'cloudflare' }} | |
name: Build & Publish a Prerelease to the Adhoc Registry | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js 16.13 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.13 | |
cache: "npm" # cache ~/.npm in case 'npm ci' needs to run | |
- name: Install workerd Dependencies | |
if: ${{ runner.os == 'Linux' }} | |
run: | | |
export DEBIAN_FRONTEND=noninteractive | |
sudo apt-get update | |
sudo apt-get install -y libc++1 | |
- name: Install NPM Dependencies | |
run: npm ci | |
- name: Modify package.json version | |
run: node .github/version-script.js | |
- name: Build | |
run: npm run build | |
env: | |
NODE_ENV: "production" | |
ALGOLIA_APP_ID: ${{ secrets.ALGOLIA_APP_ID }} | |
ALGOLIA_PUBLIC_KEY: ${{ secrets.ALGOLIA_PUBLIC_KEY }} | |
- name: Pack wrangler | |
run: npm pack | |
working-directory: packages/wrangler | |
- name: Upload packaged wrangler artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: npm-package-wrangler-${{ github.event.number }} # encode the PR number into the artifact name | |
path: packages/wrangler/wrangler-*.tgz | |
- name: Pack @cloudflare/pages-shared | |
run: npm pack | |
working-directory: packages/pages-shared | |
- name: Upload packaged @cloudflare/pages-shared artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: npm-package-cloudflare-pages-shared-${{ github.event.number }} # encode the PR number into the artifact name | |
path: packages/pages-shared/cloudflare-pages-shared-*.tgz | |
- name: Pack @cloudflare/create-cloudflare | |
run: npm pack | |
working-directory: packages/create-cloudflare | |
- name: Upload packaged @cloudflare/create-cloudflare artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: npm-package-create-cloudflare-${{ github.event.number }} # encode the PR number into the artifact name | |
path: packages/create-cloudflare/create-cloudflare-*.tgz |