For more information on actions, seeSharing automations. Runners Arunneris a server that runs your workflows when they're triggered. Each runner can run a singlejobat a time. GitHub provides Ubuntu Linux, Microsoft Windows, and macOS runners to run yourworkflows. Each workflow run executes in ...
You can configure a job's dependencies with other jobs; by default, jobs have no dependencies and run in parallel. When a job takes a dependency on another job, it waits for the dependent job to complete before running. For example, you might configure multiple build jobs for different arch...
uses: actions/checkout@v3 Setup go env - name: Setup go uses: actions/setup-go@v3 with: go-version-file: 'demo-app/go.mod' check-latest: true cache: true cache-dependency-path: demo-app/go.sum Login google container registry - name: Login to GCR uses: docker/login-action@v2 with:...
A simple cron-like job scheduling library for Rust. rustcroncrontabcronjobrustlang UpdatedNov 28, 2022 Rust GitHub action to prevent GitHub from suspending your cronjob based triggers due to repository inactivity githubautomationactionstriggercronjobhacktoberfestgithub-actions ...
If your ecosystem doesn't have lock files, you can use premade actions that resolve transitive dependencies for many ecosystems.Enable the dependency graph for private repositoriesAs a repository administrator, you can also choose to enable the dependency graph for private rep...
Actions Security Insights peaceiris/actions-gh-pagesUse this GitHub action with your projectAdd this Action to an existing workflow or create a new oneView on Marketplace main 24 Branches95 Tags Code Folders and filesLatest commit renovate[bot] fix(deps): update dependency @actions/glob to ...
search for the dependency file (package-lock.json,# npm-shrinkwrap.json or yarn.lock) in the repository root, and uses its# hash as a part of the cache key.# https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-datacache-dependency-path:'**/package-lo...
update openjob-ui 2年前 .github Bump actions/checkout from 3 to 4 1年前 buildSrc add 3年前 config update(repo): add new table admin_session and related ent, … 2年前 gradle/wrapper feat: add gradle build support 3年前 openjob-common ...
jobs:pylint:runs-on:ubuntu-lateststeps:-uses:actions/checkout@v2# checkout repo-uses:actions/setup-python@v2# set up environment for pythonwith:python-version:3.7-uses:py-actions/py-dependency-install@v2# install dependencies from requirements.txtwith:path:requirements.txt-name:runpylint,failunder...
name:First GitHub Actions Demoon:push:branches:-master-devjobs:Build:runs-on:ubuntu-lateststeps:# 步骤名称-name: checkout codeuses:actions/checkout@v2-name: actions/setup-node@v2uses:actions/setup-node@v2with:node-version:'16.14'cache:'yarn'cache-dependency-path:'**/yarn.lock'# 缓存 有需要...