Skip to content

Commit 0514d06

Browse files
Bump the all group across 1 directory with 5 updates
Bumps the all group with 5 updates in the / directory: | 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` | `6` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `7` | | [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `7` | `8` | 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 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) Updates `actions/download-artifact` from 4 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v7) Updates `peter-evans/create-pull-request` from 7 to 8 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](peter-evans/create-pull-request@v7...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: peter-evans/create-pull-request dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 351ad1f commit 0514d06

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
# Checkout Silicon (note: all checkouts delete the contents of their working directory)
2626
- name: Checkout Silicon
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v6
2828
with:
2929
submodules: true
3030

@@ -45,7 +45,7 @@ jobs:
4545
# Cache path is relative to the directory in which sbt is invoked
4646
run: echo "SBT_OPTS=-Dsbt.global.base=sbt-cache/.sbtboot -Dsbt.boot.directory=sbt-cache/.boot -Dsbt.ivy.home=sbt-cache/.ivy" >> $GITHUB_ENV
4747
- name: Cache sbt
48-
uses: actions/cache@v4
48+
uses: actions/cache@v5
4949
with:
5050
path: |
5151
sbt-cache/.sbtboot
@@ -68,7 +68,7 @@ jobs:
6868
cp target/scala-2.13/silicon.jar .
6969
7070
- name: Upload artifact
71-
uses: actions/upload-artifact@v4
71+
uses: actions/upload-artifact@v6
7272
with:
7373
name: test-and-assemble
7474
path: |
@@ -85,12 +85,12 @@ jobs:
8585
steps:
8686
# Checkout Silicon (deletes content of working directory)
8787
- name: Checkout Silicon
88-
uses: actions/checkout@v4
88+
uses: actions/checkout@v6
8989
with:
9090
submodules: true
9191

9292
- name: Download artifacts from job test-and-assemble
93-
uses: actions/download-artifact@v4
93+
uses: actions/download-artifact@v7
9494
with:
9595
name: test-and-assemble
9696

.github/workflows/update-submodules.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Check out the repo
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v6
2121
with:
2222
submodules: true
2323

@@ -41,7 +41,7 @@ jobs:
4141
4242
- name: Open a pull request
4343
id: pr
44-
uses: peter-evans/create-pull-request@v7
44+
uses: peter-evans/create-pull-request@v8
4545
if: (env.PREV_SILVER_REF != env.CUR_SILVER_REF)
4646
with:
4747
# Use viper-admin's token to workaround a restriction of GitHub.

0 commit comments

Comments
 (0)