Skip to content

Commit 590a32b

Browse files
Latest ubuntu image (#4018)
* latest ubuntu * latest python action * one more
1 parent 4c4458f commit 590a32b

11 files changed

+16
-16
lines changed

.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
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: 1 addition & 1 deletion
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

.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
2323
with:
2424
python-version: '3.12'
2525
- name: Lint SQL code

.github/workflows/predeploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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
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)

.github/workflows/test-template-changes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ on:
2525
jobs:
2626
build:
2727
name: Build and Test Template Changes
28-
runs-on: ubuntu-20.04
28+
runs-on: ubuntu-latest
2929
if: github.repository == 'HTTPArchive/almanac.httparchive.org'
3030
steps:
3131
- name: Checkout Code

0 commit comments

Comments
 (0)