Skip to content

Commit bd28c76

Browse files
Merge branch 'main' into dependabot/github_actions/actions/cache-4
2 parents b81d5bf + 85c6b7a commit bd28c76

File tree

123 files changed

+1314
-508
lines changed

Some content is hidden

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

123 files changed

+1314
-508
lines changed

.github/labeler.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# Add 'code-scanning' label to any changes within 'code-scanning' folder or any subfolders
22
code-scanning:
3-
- code-scanning/**/*
3+
- changed-files:
4+
- any-glob-to-any-file: code-scanning/**/*

.github/workflows/labeler-triage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ permissions:
55
pull-requests: write
66

77
on:
8-
- pull_request_target
8+
pull_request_target:
99

1010
jobs:
1111
triage:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/labeler@v4
14+
- uses: actions/labeler@v5
1515
with:
16-
repo-token: "${{ secrets.GITHUB_TOKEN }}"
16+
repo-token: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/stale.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: Mark stale issues and pull requests
22

33
on:
4-
schedule:
5-
- cron: "21 4 * * *"
4+
workflow_dispatch:
5+
# schedule:
6+
# - cron: "21 4 * * *"
67

78
jobs:
89
stale:

.github/workflows/sync-ghes.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
1616
git config user.email "[email protected]"
1717
git config user.name "GitHub Actions"
18-
- uses: actions/setup-node@v3
18+
- uses: actions/setup-node@v4
1919
with:
20-
node-version: '16'
20+
node-version: '20'
2121
cache: 'npm'
2222
cache-dependency-path: script/sync-ghes/package-lock.json
2323
- name: Check starter workflows for GHES compat

.github/workflows/validate-data.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v4
1414

15-
- uses: actions/setup-node@v3
15+
- uses: actions/setup-node@v4
1616
with:
17-
node-version: '16'
17+
node-version: '20'
1818
cache: 'npm'
1919
cache-dependency-path: script/validate-data/package-lock.json
2020

ci/android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616
- name: set up JDK 11
17-
uses: actions/setup-java@v3
17+
uses: actions/setup-java@v4
1818
with:
1919
java-version: '11'
2020
distribution: 'temurin'

ci/ant.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v4
1919
- name: Set up JDK 11
20-
uses: actions/setup-java@v3
20+
uses: actions/setup-java@v4
2121
with:
2222
java-version: '11'
2323
distribution: 'temurin'

ci/datadog-synthetics.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
runs-on: ubuntu-latest
2525

2626
steps:
27-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v4
2828

2929
# Run Synthetic tests within your GitHub workflow.
3030
# For additional configuration options visit the action within the marketplace: https://github.com/marketplace/actions/datadog-synthetics-ci
3131
- name: Run Datadog Synthetic tests
32-
uses: DataDog/synthetics-ci-github-action@2b56dc0cca9daa14ab69c0d1d6844296de8f941e
32+
uses: DataDog/synthetics-ci-github-action@87b505388a22005bb8013481e3f73a367b9a53eb # v1.4.0
3333
with:
3434
api_key: ${{secrets.DD_API_KEY}}
3535
app_key: ${{secrets.DD_APP_KEY}}

ci/docker-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ jobs:
4141
# https://github.com/sigstore/cosign-installer
4242
- name: Install cosign
4343
if: github.event_name != 'pull_request'
44-
uses: sigstore/cosign-installer@6e04d228eb30da1757ee4e1dd75a0ec73a653e06 #v3.1.1
44+
uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 #v3.5.0
4545
with:
46-
cosign-release: 'v2.1.1'
46+
cosign-release: 'v2.2.4'
4747

4848
# Set up BuildKit Docker container builder to be able to build
4949
# multi-platform images and export cache

ci/dotnet-desktop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109

110110
# Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact
111111
- name: Upload build artifacts
112-
uses: actions/upload-artifact@v3
112+
uses: actions/upload-artifact@v4
113113
with:
114114
name: MSIX Package
115115
path: ${{ env.Wap_Project_Directory }}\AppPackages

0 commit comments

Comments
 (0)