dependabot-action
Runs Dependabot Updates via GitHub Actions.
파일 탐색기
최종 버전 다운로드 (.zip)- devcontainer.json
- check-dist.yml
- dependabot-build-dispatched.yml
- dependabot-build.yml
- integration-test.yml
- test.yml
- dependabot.yml
- pre-commit
- extensions.json
- settings.json
- blank_working_directory.json
- default.json
- no_inputs.json
- package-lock.json
- package.json
- db.json
- server.js
- api_client.test.ts
- cleanup-integration.test.ts
- cleanup.test.ts
- container-service.test.ts
- docker-tags.test.ts
- extract-job-summary.test.ts
- graph-integration.test.ts
- helpers.ts
- image-service.test.ts
- inputs.test.ts
- main.test.ts
- proxy-integration.test.ts
- proxy.test.ts
- updater-builder-integration.test.ts
- updater-builder.test.ts
- updater-integration.test.ts
- updater.test.ts
- utils.test.ts
- cleanup.js
- main.js
- containers.json
- Dockerfile.bazel
- Dockerfile.bun
- Dockerfile.bundler
- Dockerfile.cargo
- Dockerfile.composer
- Dockerfile.conda
- Dockerfile.deno
- Dockerfile.devcontainers
- Dockerfile.docker
- Dockerfile.docker-compose
- Dockerfile.dotnet-sdk
- Dockerfile.elm
- Dockerfile.github-actions
- Dockerfile.gitsubmodule
- Dockerfile.gomod
- Dockerfile.gradle
- Dockerfile.helm
- Dockerfile.julia
- Dockerfile.maven
- Dockerfile.mix
- Dockerfile.nix
- Dockerfile.npm
- Dockerfile.nuget
- Dockerfile.opentofu
- Dockerfile.pip
- Dockerfile.pre-commit
- Dockerfile.proxy
- Dockerfile.pub
- Dockerfile.rust-toolchain
- Dockerfile.sbt
- Dockerfile.swift
- Dockerfile.terraform
- Dockerfile.uv
- Dockerfile.vcpkg
- README.md
- bump-version
- check-diff
- api-client.ts
- cleanup.ts
- cli.ts
- config-types.ts
- container-service.ts
- docker-tags.ts
- fetch-images.ts
- image-service.ts
- inputs.ts
- main.ts
- proxy.ts
- update-containers.ts
- updater-builder.ts
- updater.ts
- utils.ts
- .keep
- .editorconfig
- .gitattributes
- .gitignore
- .node-version
- .npmrc
- .nvmrc
- .prettierignore
- .prettierrc.json
- action.yml
- CODE_OF_CONDUCT.md
- CODEOWNERS
- eslint.config.mjs
- jest.config.js
- LICENSE
- package-lock.json
- package.json
- README.md
- tsconfig.json
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/github/dependabot-action
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd dependabot-action
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. Docker
쉬움 추천사전 준비물
- Git GitHub에서 프로젝트 코드를 내려받으려면 필요합니다.
- Docker Desktop 컨테이너를 빌드하고 실행하려면 필요합니다. 설치 후 실행해서 백그라운드에 켜두세요.
docker build -f docker/Dockerfile.bazel -t dependabot-action .
Dockerfile을 기반으로 실행 가능한 이미지를 빌드합니다.
docker run -p 8080:80 dependabot-action
빌드된 이미지를 실제 컨테이너로 실행합니다.
터미널에 docker compose ps 를 입력해 컨테이너들이 Up 상태인지 확인하세요. README에 포트 번호가 적혀있다면 브라우저에서 http://localhost:포트번호 로 접속해보세요.
3. Node.js
쉬움사전 준비물
npm run lint-check
이 명령어를 터미널에 그대로 입력해 실행하세요.
npm run format-check -- --write
이 명령어를 터미널에 그대로 입력해 실행하세요.
npm run test
이 명령어를 터미널에 그대로 입력해 실행하세요.
nvm install;nvm use;npm clean-install;npm ci;npm run package
이 명령어를 터미널에 그대로 입력해 실행하세요.
명령어 실행 후 터미널에 나타나는 주소(보통 http://localhost:3000 형태)를 브라우저에서 열어보세요.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
// repository documentation
Was this content helpful?
(0 ratings)
