Skip to content

Commit bd4fbb8

Browse files
committed
Merge branch 'main' of github.com:HTTPArchive/almanac.httparchive.org into production
2 parents 8de13c6 + 21b5814 commit bd4fbb8

File tree

78 files changed

+1688
-2621
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+1688
-2621
lines changed

.github/linters/.ecrc renamed to .github/linters/.editorconfig-checker.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"Verbose": false,
33
"Debug": false,
44
"IgnoreDefaults": false,
5-
"SpacesAftertabs": false,
5+
"SpacesAfterTabs": false,
66
"NoColor": false,
77
"Exclude": [],
88
"AllowedContentTypes": [],

.github/workflows/add-to-release-notes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
- main
1313
jobs:
1414
release-notes:
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-latest
1616
if: github.repository == 'HTTPArchive/almanac.httparchive.org'
1717
steps:
1818
- name: Update release notes

.github/workflows/check-translations-lengths.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ on:
2828
jobs:
2929
check_lengths:
3030
name: Check Lengths
31-
runs-on: ubuntu-20.04
31+
runs-on: ubuntu-latest
3232
steps:
3333
- name: Checkout Code
3434
uses: actions/checkout@v4

.github/workflows/code-static-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ on:
2525

2626
jobs:
2727
CodeQL-Build:
28-
# CodeQL runs on ubuntu-20.04, windows-latest, and macos-latest
29-
runs-on: ubuntu-20.04
28+
# CodeQL runs on ubuntu-latest, windows-latest, and macos-latest
29+
runs-on: ubuntu-latest
3030
strategy:
3131
matrix:
3232
language: ['javascript', 'python']
@@ -35,14 +35,14 @@ jobs:
3535
uses: actions/checkout@v4
3636
- name: Set up Python 3.12
3737
if: ${{ matrix.language == 'python' }}
38-
uses: actions/setup-python@v5.4.0
38+
uses: actions/setup-python@v5
3939
with:
4040
python-version: '3.12'
4141
- name: Install dependencies
4242
if: ${{ matrix.language == 'python' }}
4343
run: |
4444
cd src
45-
pip install -r requirements.txt;
45+
pip install --upgrade -r requirements.txt;
4646
# Set the `CODEQL-PYTHON` environment variable to the Python executable
4747
# that includes the dependencies
4848
echo "CODEQL_PYTHON=$(which python)" >> $GITHUB_ENV

.github/workflows/compress-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ on:
3535
jobs:
3636
build:
3737
name: Compress All Images
38-
runs-on: ubuntu-20.04
38+
runs-on: ubuntu-latest
3939
# Only run on main repo on and PRs that match the main repo
4040
if: |
4141
github.repository == 'HTTPArchive/almanac.httparchive.org' &&

.github/workflows/linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
jobs:
1717
lint:
1818
name: Lint Code Base
19-
runs-on: ubuntu-20.04
19+
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout Code
2222
uses: actions/checkout@v4
@@ -31,7 +31,7 @@ jobs:
3131
run: |
3232
echo "VALIDATE_ALL_CODEBASE=false" >> $GITHUB_ENV
3333
- name: Lint Code Base
34-
uses: super-linter/super-linter/slim@v7.2.1
34+
uses: super-linter/super-linter/slim@v7
3535
env:
3636
DEFAULT_BRANCH: main
3737
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/lintsql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
# Full git history is needed to get a proper list of changed files within `super-linter`
2020
fetch-depth: 0
2121
- name: Set up Python 3.12
22-
uses: actions/setup-python@v5.4.0
22+
uses: actions/setup-python@v5
2323
with:
2424
python-version: '3.12'
2525
- name: Lint SQL code

.github/workflows/predeploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ name: Predeploy script
1414

1515
env:
1616
# Update periodically from https://www.princexml.com/latest/
17-
PRINCE_PACKAGE: 'prince_13.6-1_ubuntu20.04_amd64.deb'
17+
PRINCE_PACKAGE: 'prince_20250207-1_ubuntu24.04_amd64.deb'
1818

1919
on:
2020
workflow_dispatch:
@@ -28,7 +28,7 @@ on:
2828
jobs:
2929
build:
3030
name: Update Timestamps and Generate Ebooks
31-
runs-on: ubuntu-20.04
31+
runs-on: ubuntu-latest
3232
steps:
3333
- name: Checkout branch
3434
uses: actions/checkout@v4
@@ -37,7 +37,7 @@ jobs:
3737
with:
3838
node-version: '20'
3939
- name: Set up Python 3.12
40-
uses: actions/setup-python@v5.4.0
40+
uses: actions/setup-python@v5
4141
with:
4242
python-version: '3.12'
4343
- name: Install Asian Fonts

.github/workflows/production-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
workflow_dispatch:
2121
jobs:
2222
checks:
23-
runs-on: ubuntu-20.04
23+
runs-on: ubuntu-latest
2424
if: github.repository == 'HTTPArchive/almanac.httparchive.org'
2525
steps:
2626
- name: Checkout branch

.github/workflows/progress-tracker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
track-progress:
1919
name: Track Progress
2020
if: github.repository == 'HTTPArchive/almanac.httparchive.org'
21-
runs-on: ubuntu-20.04
21+
runs-on: ubuntu-latest
2222
steps:
2323
- uses: actions/github-script@v7
2424
if: github.event_name == 'workflow_dispatch' || contains(github.event.issue.labels.*.name, env.FILTER_LABEL)

0 commit comments

Comments
 (0)