Skip to content

Commit a669cc5

Browse files
authored
Merge pull request #1428 from github/update-v2.1.36-2b971a70
Merge main into releases/v2
2 parents b2a92eb + aab7a26 commit a669cc5

File tree

92 files changed

+3078
-1791
lines changed

Some content is hidden

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

92 files changed

+3078
-1791
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
version: 2
22
updates:
3-
- package-ecosystem: "npm"
3+
- package-ecosystem: npm
44
directory: "/"
55
schedule:
6-
interval: "weekly"
7-
day: "thursday" # Gives us a working day to merge this before our typical release
6+
interval: weekly
87
labels:
9-
- "Update dependencies"
8+
- Update dependencies
109
ignore:
1110
- dependency-name: "*"
12-
update-types: ["version-update:semver-minor", "version-update:semver-patch"]
13-
- package-ecosystem: "npm"
14-
directory: "/runner"
11+
update-types:
12+
- version-update:semver-minor
13+
- version-update:semver-patch
14+
- package-ecosystem: github-actions
15+
directory: "/"
1516
schedule:
16-
interval: "weekly"
17-
day: "thursday" # Gives us a working day to merge this before our typical release
18-
ignore:
19-
- dependency-name: "*"
20-
update-types: ["version-update:semver-minor", "version-update:semver-patch"]
17+
interval: weekly

.github/workflows/__export-file-baseline-information.yml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__multi-language-autodetect.yml

Lines changed: 2 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__submit-sarif-failure.yml

Lines changed: 72 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__swift-autobuild.yml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__swift-custom-build.yml

Lines changed: 2 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/pr-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
fi
8989
9090
- name: Set up Python
91-
uses: actions/setup-python@v3
91+
uses: actions/setup-python@v4
9292
with:
9393
python-version: 3.8
9494

.github/workflows/python-deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
157157
- uses: actions/checkout@v3
158158

159-
- uses: actions/setup-python@v3
159+
- uses: actions/setup-python@v4
160160
with:
161161
python-version: ${{ matrix.python_version }}
162162

.github/workflows/script/update-required-checks.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ fi
1010

1111
if [ "$#" -eq 1 ]; then
1212
# If we were passed an argument, use that as the SHA
13-
GITHUB_SHA="$0"
13+
GITHUB_SHA="$1"
1414
elif [ "$#" -gt 1 ]; then
1515
echo "Usage: $0 [SHA]"
1616
echo "Update the required checks based on the SHA, or main."
@@ -23,7 +23,7 @@ fi
2323
echo "Getting checks for $GITHUB_SHA"
2424

2525
# Ignore any checks with "https://", CodeQL, LGTM, and Update checks.
26-
CHECKS="$(gh api repos/github/codeql-action/commits/"${GITHUB_SHA}"/check-runs --paginate | jq --slurp --compact-output --raw-output '[.[].check_runs | .[].name | select(contains("https://") or . == "CodeQL" or . == "LGTM.com" or contains("Update") or contains("update") or contains("test-setup-python-scripts") | not)] | unique | sort')"
26+
CHECKS="$(gh api repos/github/codeql-action/commits/"${GITHUB_SHA}"/check-runs --paginate | jq --slurp --compact-output --raw-output '[.[].check_runs | .[].name | select(contains("https://") or . == "CodeQL" or . == "LGTM.com" or . == "check-expected-release-files" or contains("Update") or contains("update") or contains("test-setup-python-scripts") | not)] | unique | sort')"
2727

2828
echo "$CHECKS" | jq
2929

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
fetch-depth: 0
3030

3131
- name: Set up Python
32-
uses: actions/setup-python@v3
32+
uses: actions/setup-python@v4
3333
with:
3434
python-version: 3.8
3535

0 commit comments

Comments
 (0)