Skip to content

Commit 911f351

Browse files
committed
Merge branch 'develop' into publish/2.1.0
2 parents 1d6975b + 8336649 commit 911f351

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# Setup steps for OneScript development environment
1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v6
20+
uses: actions/checkout@v7
2121

2222
- run: git config --global core.quotepath false
2323

.github/workflows/rebase.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout the latest code
12-
uses: actions/checkout@v6
12+
uses: actions/checkout@v7
1313
with:
1414
token: ${{ secrets.GITHUB_TOKEN }}
1515
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo

.github/workflows/sonar.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ jobs:
1515
with:
1616
java-version: 17
1717
distribution: temurin
18-
- uses: actions/checkout@v6
18+
- uses: actions/checkout@v7
1919
with:
2020
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
2121
- name: Cache SonarQube packages
22-
uses: actions/cache@v5
22+
uses: actions/cache@v6
2323
with:
2424
path: ~\sonar\cache
2525
key: ${{ runner.os }}-sonar
2626
restore-keys: ${{ runner.os }}-sonar
2727
- name: Cache SonarQube scanner
2828
id: cache-sonar-scanner
29-
uses: actions/cache@v5
29+
uses: actions/cache@v6
3030
with:
3131
path: .\.sonar\scanner
3232
key: ${{ runner.os }}-sonar-scanner

0 commit comments

Comments
 (0)