Skip to content

Commit 5d5cd55

Browse files
authored
Merge pull request #3263 from github/backport-v3.31.2-0499de31b
Merge releases/v4 into releases/v3
2 parents c503cb4 + c6eb09d commit 5d5cd55

28 files changed

+79
-118
lines changed

.github/actions/release-initialise/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ runs:
1616
shell: bash
1717

1818
- name: Set up Python
19-
uses: actions/setup-python@v5
19+
uses: actions/setup-python@v6
2020
with:
21-
python-version: 3.12
21+
python-version: '3.12'
2222

2323
- name: Install dependencies
2424
run: |

.github/workflows/check-expected-release-files.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ defaults:
1515

1616
jobs:
1717
check-expected-release-files:
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-slim
1919

2020
permissions:
2121
contents: read

.github/workflows/debug-artifacts-failure-safe.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
runs-on: ubuntu-latest
8080
steps:
8181
- name: Download all artifacts
82-
uses: actions/download-artifact@v5
82+
uses: actions/download-artifact@v6
8383
- name: Check expected artifacts exist
8484
run: |
8585
LANGUAGES="cpp csharp go java javascript python"

.github/workflows/debug-artifacts-safe.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
runs-on: ubuntu-latest
7474
steps:
7575
- name: Download all artifacts
76-
uses: actions/download-artifact@v5
76+
uses: actions/download-artifact@v6
7777
- name: Check expected artifacts exist
7878
run: |
7979
VERSIONS="stable-v2.20.3 default linked nightly-latest"

.github/workflows/label-pr-size.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616
jobs:
1717
sizeup:
1818
name: Label PR with size
19-
runs-on: ubuntu-latest
19+
runs-on: ubuntu-slim
2020

2121
steps:
2222
- name: Run sizeup

.github/workflows/post-release-mergeback.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ defaults:
2424

2525
jobs:
2626
merge-back:
27-
runs-on: ubuntu-latest
27+
runs-on: ubuntu-slim
2828
environment: Automation
2929
if: github.repository == 'github/codeql-action'
3030
env:
@@ -48,6 +48,9 @@ jobs:
4848
with:
4949
fetch-depth: 0 # ensure we have all tags and can push commits
5050
- uses: actions/setup-node@v6
51+
- uses: actions/setup-python@v6
52+
with:
53+
python-version: '3.12'
5154

5255
- name: Update git config
5356
run: |

.github/workflows/prepare-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ defaults:
2929
jobs:
3030
prepare:
3131
name: "Prepare release"
32-
runs-on: ubuntu-latest
32+
runs-on: ubuntu-slim
3333
if: github.repository == 'github/codeql-action'
3434

3535
permissions:

.github/workflows/publish-immutable-action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ defaults:
1010

1111
jobs:
1212
publish:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-slim
1414
permissions:
1515
contents: read
1616
id-token: write

.github/workflows/update-bundle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defaults:
2020
jobs:
2121
update-bundle:
2222
if: github.event.release.prerelease && startsWith(github.event.release.tag_name, 'codeql-bundle-')
23-
runs-on: ubuntu-latest
23+
runs-on: ubuntu-slim
2424
permissions:
2525
contents: write # needed to push commits
2626
pull-requests: write # needed to create pull requests

.github/workflows/update-release-branch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
update:
2828
timeout-minutes: 45
29-
runs-on: ubuntu-latest
29+
runs-on: ubuntu-slim
3030
if: github.event_name == 'workflow_dispatch'
3131
needs: [prepare]
3232
env:
@@ -77,7 +77,7 @@ jobs:
7777
7878
backport:
7979
timeout-minutes: 45
80-
runs-on: ubuntu-latest
80+
runs-on: ubuntu-slim
8181
environment: Automation
8282
needs: [prepare]
8383
if: ${{ (github.event_name == 'push') && needs.prepare.outputs.backport_target_branches != '[]' }}

0 commit comments

Comments
 (0)