Skip to content

Commit ff0d8d1

Browse files
authored
Merge pull request #19 from OS2offdig/main
Syncing with main changes
2 parents 3900087 + 8abb32b commit ff0d8d1

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ updates:
33
- package-ecosystem: bundler
44
directory: /
55
schedule:
6-
interval: daily
6+
interval: "weekly"
77
allow:
88
- dependency-type: direct
9+
10+
- package-ecosystem: "github-actions"
11+
directory: "/"
12+
schedule:
13+
# Check for updates to GitHub Actions every week
14+
interval: "weekly"

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
- name: Setup Ruby
1616
uses: ruby/setup-ruby@v1
1717
with:

.github/workflows/pages.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name: Deploy Jekyll site to Pages
88

99
on:
1010
push:
11-
branches: ["main"]
11+
branches: ["testing"]
1212

1313
# Allows you to run this workflow manually from the Actions tab
1414
workflow_dispatch:
@@ -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 --baseurl "${{ steps.pages.outputs.base_path }}"
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

0 commit comments

Comments
 (0)