Skip to content

Commit 83df500

Browse files
Bump the actions group with 5 updates
Bumps the actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `4` | | [actions/setup-python](https://github.com/actions/setup-python) | `4` | `5` | | [pre-commit/action](https://github.com/pre-commit/action) | `3.0.0` | `3.0.1` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `3` | `4` | | [peaceiris/actions-gh-pages](https://github.com/peaceiris/actions-gh-pages) | `3` | `4` | Updates `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](actions/checkout@v3...v4) Updates `actions/setup-python` from 4 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v5) Updates `pre-commit/action` from 3.0.0 to 3.0.1 - [Release notes](https://github.com/pre-commit/action/releases) - [Commits](pre-commit/action@v3.0.0...v3.0.1) Updates `actions/upload-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) Updates `peaceiris/actions-gh-pages` from 3 to 4 - [Release notes](https://github.com/peaceiris/actions-gh-pages/releases) - [Changelog](https://github.com/peaceiris/actions-gh-pages/blob/main/CHANGELOG.md) - [Commits](peaceiris/actions-gh-pages@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pre-commit/action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: peaceiris/actions-gh-pages dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 913f7fb commit 83df500

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/main.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ jobs:
66
pre-commit:
77
runs-on: ubuntu-20.04
88
steps:
9-
- uses: actions/checkout@v3
10-
- uses: actions/setup-python@v4
11-
- uses: pre-commit/[email protected].0
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-python@v5
11+
- uses: pre-commit/[email protected].1
1212
build:
1313
runs-on: ubuntu-20.04
1414
steps:
15-
- uses: actions/checkout@v3
16-
- uses: actions/setup-python@v4
15+
- uses: actions/checkout@v4
16+
- uses: actions/setup-python@v5
1717
with:
1818
python-version: "3.10"
1919
- name: Install dependencies
@@ -52,7 +52,7 @@ jobs:
5252
- name: Run checks
5353
run: |
5454
make check
55-
- uses: actions/upload-artifact@v3
55+
- uses: actions/upload-artifact@v4
5656
if: ${{ always() }}
5757
with:
5858
name: build
@@ -74,7 +74,7 @@ jobs:
7474
>> $GITHUB_STEP_SUMMARY
7575
- name: Publish cheatsheets and handouts
7676
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
77-
uses: peaceiris/actions-gh-pages@v3
77+
uses: peaceiris/actions-gh-pages@v4
7878
with:
7979
github_token: ${{ secrets.GITHUB_TOKEN }}
8080
publish_dir: ./docs/_build/html/

0 commit comments

Comments
 (0)