Skip to content

Commit 1544df1

Browse files
chore(deps): bump the github-actions group with 3 updates
Bumps the github-actions group with 3 updates: [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). 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 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent b531cbc commit 1544df1

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/_ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,21 +72,21 @@ jobs:
7272
toolchain: ${{ needs.get-rust-version.outputs.rust-version }}
7373
targets: ${{ matrix.target }}
7474
- name: Cache Cargo registry
75-
uses: actions/cache@v4
75+
uses: actions/cache@v5
7676
with:
7777
path: ~/.cargo/registry/index
7878
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
7979
restore-keys: |
8080
${{ runner.os }}-cargo-registry-
8181
- name: Cache Cargo dependencies
82-
uses: actions/cache@v4
82+
uses: actions/cache@v5
8383
with:
8484
path: ~/.cargo/registry/cache
8585
key: ${{ runner.os }}-cargo-deps-${{ hashFiles('**/Cargo.lock') }}
8686
restore-keys: |
8787
${{ runner.os }}-cargo-deps-
8888
- name: Cache build artifacts
89-
uses: actions/cache@v4
89+
uses: actions/cache@v5
9090
with:
9191
path: target
9292
key: ${{ runner.os }}-${{ matrix.target }}-cargo-build-${{ hashFiles('**/Cargo.lock') }}-${{ hashFiles('**/*.rs') }}
@@ -134,7 +134,7 @@ jobs:
134134
tar -czvf ${{ matrix.artifact_name }}.tar.gz -C "target/${{ matrix.target }}/release" "${{ matrix.binary_name }}"
135135
fi
136136
- name: Upload Build Artifact
137-
uses: actions/upload-artifact@v5
137+
uses: actions/upload-artifact@v6
138138
with:
139139
name: ${{ matrix.artifact_name }}
140140
path: ${{ matrix.artifact_name }}.*

.github/workflows/_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@ jobs:
3232
args: --latest --strip header
3333

3434
- name: Download Linux Build
35-
uses: actions/download-artifact@v6
35+
uses: actions/download-artifact@v7
3636
with:
3737
name: gitopolis-linux-x86_64
3838

3939
- name: Download Windows Build
40-
uses: actions/download-artifact@v6
40+
uses: actions/download-artifact@v7
4141
with:
4242
name: gitopolis-windows-x86_64
4343

4444
- name: Download macOS Build
45-
uses: actions/download-artifact@v6
45+
uses: actions/download-artifact@v7
4646
with:
4747
name: gitopolis-macos-x86_64
4848

0 commit comments

Comments
 (0)