Skip to content

Commit 853258e

Browse files
Bump the all group with 5 updates
Bumps the all group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `2` | `4` | | [actions/configure-pages](https://github.com/actions/configure-pages) | `3` | `5` | | [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) | `1` | `3` | | [actions/deploy-pages](https://github.com/actions/deploy-pages) | `2` | `4` | | [actions/setup-python](https://github.com/actions/setup-python) | `2` | `5` | Updates `actions/checkout` from 2 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v4) Updates `actions/configure-pages` from 3 to 5 - [Release notes](https://github.com/actions/configure-pages/releases) - [Commits](actions/configure-pages@v3...v5) Updates `actions/upload-pages-artifact` from 1 to 3 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](actions/upload-pages-artifact@v1...v3) Updates `actions/deploy-pages` from 2 to 4 - [Release notes](https://github.com/actions/deploy-pages/releases) - [Commits](actions/deploy-pages@v2...v4) Updates `actions/setup-python` from 2 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v2...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/configure-pages dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/upload-pages-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/deploy-pages dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent eda0d45 commit 853258e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/pages.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434
- name: Setup Ruby
3535
uses: ruby/setup-ruby@v1
3636
with:
@@ -39,15 +39,15 @@ jobs:
3939
cache-version: 0 # Increment this number if you need to re-download cached gems
4040
- name: Setup Pages
4141
id: pages
42-
uses: actions/configure-pages@v3
42+
uses: actions/configure-pages@v5
4343
- name: Build with Jekyll
4444
# Outputs to the './_site' directory by default
4545
run: bundle exec jekyll build
4646
env:
4747
JEKYLL_ENV: production
4848
- name: Upload artifact
4949
# Automatically uploads an artifact from the './_site' directory by default
50-
uses: actions/upload-pages-artifact@v1
50+
uses: actions/upload-pages-artifact@v3
5151

5252
# Deployment job
5353
deploy:
@@ -59,4 +59,4 @@ jobs:
5959
steps:
6060
- name: Deploy to GitHub Pages
6161
id: deployment
62-
uses: actions/deploy-pages@v2
62+
uses: actions/deploy-pages@v4

.github/workflows/test_yaml.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ jobs:
66
test-yaml:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v4
1010
- name: Set up Python
1111
with:
1212
python-version: 3.7
13-
uses: actions/setup-python@v2
13+
uses: actions/setup-python@v5
1414
- name: Install dependencies
1515
run: |
1616
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)