Compare commits

..
12 Commits
Author SHA1 Message Date
Marcus Young f788148b2c [Automated 🤖 ] Bump to version 2.316.0 2024-04-23 10:59:01 -05:00
Marcus Young e38ae432d7 [Automated 🤖 ] Bump to version 2.315.0 2024-03-26 14:23:04 -05:00
myoung34andGitHub 122b1e3055 Merge pull request #348 from myoung34/renovate/shellcheck-0.x
Update dependency shellcheck to v0.10.0
2024-03-07 21:37:25 -06:00
renovate[bot]andGitHub 8eb278d63a Update dependency shellcheck to v0.10.0 2024-03-08 03:25:55 +00:00
myoung34andGitHub f6dd276dca Merge pull request #346 from mattseymour/patch-1
Update README.md
2024-02-28 08:51:48 -06:00
Matt SeymourandGitHub e51fe624fb Update README.md 2024-02-28 14:48:10 +00:00
Matt SeymourandGitHub 88532c5a72 Update README.md
Fix typos and update the argument description for RUNNER_SCOPE.
2024-02-28 14:27:21 +00:00
Marcus Young d259f87e8d [Automated 🤖 ] Bump to version 2.314.1 2024-02-27 14:34:04 -06:00
Marcus Young dac70ea65f [Automated 🤖 ] Bump to version 2.314.0 2024-02-26 12:56:43 -06:00
Marcus Young 79c6aa0f01 [Automated 🤖 ] Bump to version 2.313.0 2024-02-07 14:32:31 -06:00
myoung34andGitHub 323b49ed6b Merge pull request #345 from myoung34/renovate/pre-commit-action-3.x
Update pre-commit/action action to v3.0.1
2024-02-07 10:43:48 -06:00
renovate[bot]andGitHub aaf2b396be Update pre-commit/action action to v3.0.1 2024-02-07 16:41:40 +00:00
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -10,6 +10,6 @@ jobs:
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/setup-python@v5
- uses: pre-commit/action@v3.0.0
- uses: pre-commit/action@v3.0.1
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
+1 -1
View File
@@ -1 +1 @@
shellcheck 0.9.0
shellcheck 0.10.0
+1 -1
View File
@@ -5,7 +5,7 @@ LABEL maintainer="myoung34@my.apsu.edu"
ENV AGENT_TOOLSDIRECTORY=/opt/hostedtoolcache
RUN mkdir -p /opt/hostedtoolcache
ARG GH_RUNNER_VERSION="2.312.0"
ARG GH_RUNNER_VERSION="2.316.0"
ARG TARGETPLATFORM
+3 -3
View File
@@ -49,14 +49,14 @@ These containers are built via Github actions that [copy the dockerfile](https:/
| Environment Variable | Description |
| --- | --- |
| `RUN_AS_ROOT` | Boolean to run as root. If `true`: will run as root. If `True` and the user is overridden it will error. If any other value it will run as the `runner` user and allow an optional override. Default is `true` |
| `RUNNER_NAME` | The name of the runner to use. Supercedes (overrides) `RUNNER_NAME_PREFIX` |
| `RUNNER_NAME` | The name of the runner to use. Supersedes (overrides) `RUNNER_NAME_PREFIX` |
| `RUNNER_NAME_PREFIX` | A prefix for runner name (See `RANDOM_RUNNER_SUFFIX` for how the full name is generated). Note: will be overridden by `RUNNER_NAME` if provided. Defaults to `github-runner` |
| `RANDOM_RUNNER_SUFFIX` | Boolean to use a randomized runner name suffix (preceeded by `RUNNER_NAME_PREFIX`). Will use a 13 character random string by default. If set to a value other than true it will attempt to use the contents of `/etc/hostname` or fall back to a random string if the file does not exist or is empty. Note: will be overridden by `RUNNER_NAME` if provided. Defaults to `true`. |
| `RANDOM_RUNNER_SUFFIX` | Boolean to use a randomized runner name suffix (preceded by `RUNNER_NAME_PREFIX`). Will use a 13 character random string by default. If set to a value other than true it will attempt to use the contents of `/etc/hostname` or fall back to a random string if the file does not exist or is empty. Note: will be overridden by `RUNNER_NAME` if provided. Defaults to `true`. |
| `ACCESS_TOKEN` | A [github PAT](https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token) to use to generate `RUNNER_TOKEN` dynamically at container start. Not using this requires a valid `RUNNER_TOKEN` |
| `APP_ID` | The github application ID. Must be paired with `APP_PRIVATE_KEY` and should not be used with `ACCESS_TOKEN` or `RUNNER_TOKEN` |
| `APP_PRIVATE_KEY` | The github application private key. Must be paired with `APP_ID` and should not be used with `ACCESS_TOKEN` or `RUNNER_TOKEN` |
| `APP_LOGIN` | The github application login id. Can be paired with `APP_ID` and `APP_PRIVATE_KEY` if default value extracted from `REPO_URL` or `ORG_NAME` is not correct. Note that no default is present when `RUNNER_SCOPE` is 'enterprise'. |
| `RUNNER_SCOPE` | The scope the runner will be registered on. Valid values are `repo`, `org` and `ent`. For 'org' and 'enterprise', `ACCESS_TOKEN` is required and `REPO_URL` is unnecessary. If 'org', requires `ORG_NAME`; if 'enterprise', requires `ENTERPRISE_NAME`. Default is 'repo'. |
| `RUNNER_SCOPE` | The scope the runner will be registered on. Valid values are `repo`, `org` and `ent`. For 'org' and 'enterprise', `ACCESS_TOKEN` is required and `REPO_URL` is unnecessary. If 'org', requires `ORG_NAME`; if 'ent', requires `ENTERPRISE_NAME`. Default is 'repo'. |
| `ORG_NAME` | The organization name for the runner to register under. Requires `RUNNER_SCOPE` to be 'org'. No default value. |
| `ENTERPRISE_NAME` | The enterprise name for the runner to register under. Requires `RUNNER_SCOPE` to be 'enterprise'. No default value. |
| `LABELS` | A comma separated string to indicate the labels. Default is 'default' |