diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2023-09-05 08:32:55 +1000 |
---|---|---|
committer | GitHub <[email protected]> | 2023-09-05 08:32:55 +1000 |
commit | 0a5b84fea93f1e87390090bf1d9ae363b53d9726 (patch) | |
tree | 4c725369f4f66505afacda3c10eff95dab7ec9e2 /.github | |
parent | 53bb8355f8a72789d35000948f19b8aa20cae8fa (diff) | |
download | IronOS-0a5b84fea93f1e87390090bf1d9ae363b53d9726.tar.gz IronOS-0a5b84fea93f1e87390090bf1d9ae363b53d9726.zip |
chore(deps): bump actions/checkout from 3 to 4 (#1811)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/docs.yml | 2 | ||||
-rw-r--r-- | .github/workflows/push.yml | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 9ac8cf59..56ac4e9c 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: actions/setup-python@v4 diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 939cfaf8..f07c4ae1 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -21,7 +21,7 @@ jobs: - name: Install dependencies (python) run: python3 -m pip install bdflib - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true @@ -74,7 +74,7 @@ jobs: - name: Install dependencies (python) run: python3 -m pip install bdflib - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true @@ -121,7 +121,7 @@ jobs: - name: Install dependencies (apk) run: apk add --no-cache python3 py3-pip make git bash findutils gcc musl-dev - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true @@ -144,7 +144,7 @@ jobs: - name: Install dependencies (apk) run: apk add --no-cache make git diffutils findutils clang-extra-tools bash - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true @@ -161,7 +161,7 @@ jobs: - name: Install dependencies (apk) run: apk add --no-cache python3 py3-pip make git black - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true @@ -179,7 +179,7 @@ jobs: name: check_shell runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: shellcheck uses: reviewdog/action-shellcheck@v1 with: @@ -198,7 +198,7 @@ jobs: - name: Install dependencies (apk) run: apk add --no-cache git - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true |