Skip to content

Commit 8612813

Browse files
authored
Merge branch 'main' into henrymercer/bundle-2.12.5
2 parents 98a90dc + ebbe965 commit 8612813

File tree

946 files changed

+736457
-990059
lines changed

Some content is hidden

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

946 files changed

+736457
-990059
lines changed

.github/workflows/__config-export.yml

+6-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__diagnostics-export.yml

+99
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
uses: ./.github/prepare-test
4040
with:
4141
version: latest
42-
- uses: actions/setup-go@v3
42+
- uses: actions/setup-go@v4
4343
with:
4444
go-version: ^1.13.1
4545
- uses: ./../action/init

.github/workflows/debug-artifacts.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
uses: ./.github/prepare-test
6060
with:
6161
version: ${{ matrix.version }}
62-
- uses: actions/setup-go@v3
62+
- uses: actions/setup-go@v4
6363
with:
6464
go-version: ^1.13.1
6565
- uses: ./../action/init

.github/workflows/update-supported-enterprise-server-versions.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Update Supported Enterprise Server Versions
33
on:
44
schedule:
55
- cron: "0 0 * * *"
6+
workflow_dispatch:
67

78
jobs:
89
update-supported-enterprise-server-versions:
@@ -35,7 +36,7 @@ jobs:
3536
env:
3637
ENTERPRISE_RELEASES_PATH: ${{ github.workspace }}/enterprise-releases/
3738
- name: Commit Changes
38-
uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04 # v4.2.3
39+
uses: peter-evans/create-pull-request@38e0b6e68b4c852a5500a94740f0e535e0d7ba54 # v4.2.4
3940
with:
4041
commit-message: Update supported GitHub Enterprise Server versions.
4142
title: Update supported GitHub Enterprise Server versions.

.github/workflows/update-supported-enterprise-server-versions/update.py

+5
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ def main():
1515
api_compatibility_data = json.loads(_API_COMPATIBILITY_PATH.read_text())
1616

1717
releases = json.loads(_RELEASE_FILE_PATH.read_text())
18+
19+
# Remove GHES version using a previous version numbering scheme.
20+
if "11.10.340" in releases:
21+
del releases["11.10.340"]
22+
1823
oldest_supported_release = None
1924
newest_supported_release = semver.VersionInfo.parse(api_compatibility_data["maximumVersion"] + ".0")
2025

lib/analyze-action.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)