Skip to content

Commit ae6b5da

Browse files
Merge branch 'main' into agm-2025-update
2 parents 8ba3ed1 + 9cf1de2 commit ae6b5da

File tree

7 files changed

+15
-13
lines changed

7 files changed

+15
-13
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
# Please see the documentation for all configuration options:
4-
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5-
61
version: 2
72
updates:
8-
- package-ecosystem: "docker" # See documentation for possible values
9-
directory: "/" # Location of package manifests
3+
- package-ecosystem: "docker"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
8+
- package-ecosystem: "bundler"
9+
directory: "/"
1010
schedule:
1111
interval: "daily"
1212

13-
- package-ecosystem: "bundler" # See documentation for possible values
14-
directory: "/" # Location of package manifests
13+
- package-ecosystem: "github-actions"
14+
directory: "/"
1515
schedule:
1616
interval: "daily"

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
# Initializes the CodeQL tools for scanning.
3030
- name: Initialize CodeQL
31-
uses: github/codeql-action/init@v2
31+
uses: github/codeql-action/init@v3
3232
with:
3333
languages: ${{ matrix.language }}
3434

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.4
1+
3.4.5

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.4.4 AS base
1+
FROM ruby:3.4.5 AS base
22

33
RUN bundle config set frozen 'true' && \
44
bundle config set path '/vendor/bundle'

_includes/welcome_banner.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<div class="banner">
2-
<p>Joining us in September? Watch our <a href="/welcome">welcome video</a> and <a href="/discord">meet everyone else over on Discord</a>!</p>
2+
<p>Joining us in September? Check out our <a href="/calendar">events calendar</a> and <a href="/discord">meet everyone else over on Discord</a>!</p>
33
</div>

_layouts/page.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
{% include header.html %}
4040

4141
<main>
42+
{% include welcome_banner.html %}
4243
{{ content }}
4344
</main>
4445

_layouts/post.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
<body>
1616
{% include header.html %}
1717
<main>
18+
{% include welcome_banner.html %}
1819
<div class="post-header">
1920
{% if page.header-image %}
2021
<img class="post-header-image" src="{{ page.header-image | relative_url }}">

0 commit comments

Comments
 (0)