Skip to content

Commit c2264c2

Browse files
dependabot[bot]James-Frowen
authored andcommitted
chore(deps): bump the ci-actions group with 10 updates
Bumps the ci-actions group with 10 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | | [crazy-max/ghaction-github-pages](https://github.com/crazy-max/ghaction-github-pages) | `4.0.0` | `5.0.0` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [cycjimmy/semantic-release-action](https://github.com/cycjimmy/semantic-release-action) | `4` | `6` | | [actions/setup-java](https://github.com/actions/setup-java) | `4` | `5` | | [JulienKode/pull-request-name-linter-action](https://github.com/julienkode/pull-request-name-linter-action) | `0.5.0` | `20.1.0` | | [actions/stale](https://github.com/actions/stale) | `9` | `10` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v8) Updates `crazy-max/ghaction-github-pages` from 4.0.0 to 5.0.0 - [Release notes](https://github.com/crazy-max/ghaction-github-pages/releases) - [Commits](crazy-max/ghaction-github-pages@v4.0.0...v5.0.0) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v6) Updates `cycjimmy/semantic-release-action` from 4 to 6 - [Release notes](https://github.com/cycjimmy/semantic-release-action/releases) - [Changelog](https://github.com/cycjimmy/semantic-release-action/blob/main/docs/CHANGELOG.md) - [Commits](cycjimmy/semantic-release-action@v4...v6) Updates `actions/setup-java` from 4 to 5 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@v4...v5) Updates `JulienKode/pull-request-name-linter-action` from 0.5.0 to 20.1.0 - [Release notes](https://github.com/julienkode/pull-request-name-linter-action/releases) - [Commits](JulienKode/pull-request-name-linter-action@v0.5.0...v20.1.0) Updates `actions/stale` from 9 to 10 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](actions/stale@v9...v10) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions - dependency-name: crazy-max/ghaction-github-pages dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions - dependency-name: cycjimmy/semantic-release-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions - dependency-name: JulienKode/pull-request-name-linter-action dependency-version: 20.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions - dependency-name: actions/stale dependency-version: '10' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent ab6582c commit c2264c2

6 files changed

Lines changed: 24 additions & 24 deletions

File tree

.github/workflows/docs.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535
echo "$UNITY_LICENSE" | tr -d '\r' > UnityLicenseFile.ulf
3636
unity-editor -nographics -logFile /dev/stdout -manualLicenseFile UnityLicenseFile.ulf -quit
3737
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v6
3939

4040
- name: Cache Library
4141
id: cache-library
42-
uses: actions/cache@v4
42+
uses: actions/cache@v5
4343
with:
4444
path: Library
4545
key: Library-2022.3.62
@@ -60,7 +60,7 @@ jobs:
6060
output-folder: doc/docs/reference
6161

6262
- name: Upload artifacts
63-
uses: actions/upload-artifact@v4
63+
uses: actions/upload-artifact@v7
6464
with:
6565
name: metadata
6666
path: doc/docs/reference
@@ -71,10 +71,10 @@ jobs:
7171
runs-on: ubuntu-latest
7272
container: node:18
7373
steps:
74-
- uses: actions/checkout@v4
74+
- uses: actions/checkout@v6
7575

7676
- name: Download artifact
77-
uses: actions/download-artifact@v4
77+
uses: actions/download-artifact@v8
7878
with:
7979
name: metadata
8080
path: doc/docs/reference
@@ -104,7 +104,7 @@ jobs:
104104
REPO_NAME: ${{ github.event.repository.name }}
105105

106106
- name: Publish docs
107-
uses: crazy-max/ghaction-github-pages@v4.0.0
107+
uses: crazy-max/ghaction-github-pages@v5.0.0
108108
if: github.ref == 'refs/heads/main'
109109
with:
110110
keep_history: false

.github/workflows/main.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ jobs:
5959
unity-editor -nographics -logFile /dev/stdout -manualLicenseFile UnityLicenseFile.ulf -quit
6060
6161
- name: Checkout repository
62-
uses: actions/checkout@v4
62+
uses: actions/checkout@v6
6363

6464
- name: Cache Library
6565
id: cache-library
66-
uses: actions/cache/restore@v4
66+
uses: actions/cache/restore@v5
6767
with:
6868
path: Library
6969
key: Library-2022.3.62
@@ -83,14 +83,14 @@ jobs:
8383
runs-on: ubuntu-latest
8484
steps:
8585
- name: Checkout repository
86-
uses: actions/checkout@v4
86+
uses: actions/checkout@v6
8787

88-
- uses: actions/setup-node@v4
88+
- uses: actions/setup-node@v6
8989
with:
9090
node-version: '14'
9191

9292
- name: Release
93-
uses: cycjimmy/semantic-release-action@v4
93+
uses: cycjimmy/semantic-release-action@v6
9494
id: semantic
9595
with:
9696
semantic_version: 23
@@ -105,7 +105,7 @@ jobs:
105105
# upload next version so that sonar job can use it
106106
- run: echo ${{ steps.semantic.outputs.new_release_version }} > SemanticVersion.txt
107107
- name: Archive Version
108-
uses: actions/upload-artifact@v4
108+
uses: actions/upload-artifact@v7
109109
if: always()
110110
with:
111111
name: SemanticVersion
@@ -134,17 +134,17 @@ jobs:
134134
unity-editor -nographics -logFile /dev/stdout -manualLicenseFile UnityLicenseFile.ulf -quit
135135
136136
- name: Checkout repository
137-
uses: actions/checkout@v4
137+
uses: actions/checkout@v6
138138

139139
- name: Cache Library
140140
id: cache-library
141-
uses: actions/cache@v4
141+
uses: actions/cache@v5
142142
with:
143143
path: Library
144144
key: Library-2022.2.8
145145

146146
- name: Set up JDK 17
147-
uses: actions/setup-java@v4
147+
uses: actions/setup-java@v5
148148
with:
149149
java-version: 17
150150
distribution: 'zulu'
@@ -156,7 +156,7 @@ jobs:
156156
run: unity-editor -nographics -logFile /dev/stdout -customBuildName Mirage -projectPath . -executeMethod UnityEditor.SyncVS.SyncSolution -quit
157157

158158
- name: Get test coverages
159-
uses: actions/download-artifact@v4
159+
uses: actions/download-artifact@v8
160160
with:
161161
name: Test results 2022
162162
path: Tests
@@ -165,7 +165,7 @@ jobs:
165165
# Run this as late as possible, to give time for publish job to finish and upload
166166
- name: Get version
167167
continue-on-error: true
168-
uses: actions/download-artifact@v4
168+
uses: actions/download-artifact@v8
169169
with:
170170
name: SemanticVersion
171171
path: SemanticVersion

.github/workflows/pr-name.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
PR_lint:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v6
1111
- name: Install Dependencies
1212
run: npm install @commitlint/config-conventional
1313

14-
- uses: JulienKode/pull-request-name-linter-action@v0.5.0
14+
- uses: JulienKode/pull-request-name-linter-action@v20.1.0

.github/workflows/request-activation-file.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: unity-editor -logFile /dev/stdout -createManualActivationFile -quit
2323

2424
- name: Upload License Request
25-
uses: actions/upload-artifact@v4
25+
uses: actions/upload-artifact@v7
2626
with:
2727
name: Manual Activation File
2828
path: Unity_v${{ github.event.inputs.license-file }}.alf

.github/workflows/run-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ jobs:
3434
unity-editor -nographics -logFile /dev/stdout -manualLicenseFile UnityLicenseFile.ulf -quit
3535
3636
- name: Checkout repository
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v6
3838

3939
- name: Cache Library
4040
id: cache-library
41-
uses: actions/cache@v4
41+
uses: actions/cache@v5
4242
with:
4343
path: Library
4444
key: ${{ inputs.cache_key }}
@@ -53,7 +53,7 @@ jobs:
5353
timeout-minutes: 20
5454

5555
- name: Archive test results
56-
uses: actions/upload-artifact@v4
56+
uses: actions/upload-artifact@v7
5757
if: always()
5858
with:
5959
name: ${{ inputs.test_results_name }}

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
pull-requests: write
2020

2121
steps:
22-
- uses: actions/stale@v9
22+
- uses: actions/stale@v10
2323
with:
2424
repo-token: ${{ secrets.GITHUB_TOKEN }}
2525
days-before-pr-stale: 60

0 commit comments

Comments
 (0)