Skip to content

Commit 0819051

Browse files
Bump the all group across 1 directory with 3 updates
Bumps the all group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- 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/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 44b2dc1 commit 0819051

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: Lint / Code
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
- uses: actions-rs/toolchain@v1
2525
with:
2626
components: rustfmt, clippy
@@ -48,13 +48,13 @@ jobs:
4848
name: Lint / Codegen
4949
runs-on: ubuntu-latest
5050
steps:
51-
- uses: actions/checkout@v5
51+
- uses: actions/checkout@v6
5252
with:
5353
repository: kamu-data/kamu-cli
5454
path: kamu-cli
5555
- name: Copy rust-toolchain file
5656
run: cp kamu-cli/rust-toolchain ./rust-toolchain
57-
- uses: actions/checkout@v5
57+
- uses: actions/checkout@v6
5858
with:
5959
repository: open-data-fabric/open-data-fabric
6060
path: open-data-fabric
@@ -78,7 +78,7 @@ jobs:
7878
name: Lint / Dependencies
7979
runs-on: ubuntu-latest
8080
steps:
81-
- uses: actions/checkout@v5
81+
- uses: actions/checkout@v6
8282
- uses: actions-rs/toolchain@v1
8383
- uses: cargo-bins/cargo-binstall@main
8484
- run: cargo binstall cargo-deny -y
@@ -180,7 +180,7 @@ jobs:
180180
sudo rm -rf /opt/ghc
181181
sudo rm -rf /opt/hostedtoolcache/CodeQL
182182
183-
- uses: actions/checkout@v5
183+
- uses: actions/checkout@v6
184184

185185
- uses: actions-rs/toolchain@v1
186186

.github/workflows/release-images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
github.event.workflow_run.conclusion == 'success' ||
2323
github.event.workflow_run.conclusion == null
2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
with:
2727
# Checkout the same commit that the release was built for
2828
ref: ${{ github.event.workflow_run.head_sha }}

.github/workflows/release-test-installer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
github.event.workflow_run.conclusion == 'success' ||
3535
github.event.workflow_run.conclusion == null
3636
steps:
37-
- uses: actions/checkout@v5
37+
- uses: actions/checkout@v6
3838
with:
3939
# Checkout the same commit that the release was built for
4040
ref: ${{ github.event.workflow_run.head_sha }}

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
# This will be replaced with `cross` for cross-compilation targets
6464
CARGO: cargo
6565
steps:
66-
- uses: actions/checkout@v5
66+
- uses: actions/checkout@v6
6767

6868
- uses: actions-rs/toolchain@v1 # Uses rust-toolchain file
6969
with:
@@ -103,7 +103,7 @@ jobs:
103103
target/${{ matrix.target }}/release/${{ env.PACKAGE_NAME }}${{ matrix.binary-ext }} \
104104
target/${{ matrix.target }}/release/${{ env.BINARY_NAME }}${{ matrix.binary-ext }}
105105
106-
- uses: actions/upload-artifact@v4
106+
- uses: actions/upload-artifact@v6
107107
with:
108108
name: ${{ env.PACKAGE_NAME }}-${{ matrix.target }}
109109
path: target/${{ matrix.target }}/release/${{ env.BINARY_NAME }}${{ matrix.binary-ext }}
@@ -114,7 +114,7 @@ jobs:
114114
runs-on: ubuntu-latest
115115
needs: [ build ]
116116
steps:
117-
- uses: actions/checkout@v5
117+
- uses: actions/checkout@v6
118118

119119
# Sets the header for the release description
120120
- run: echo "" > RELEASE_HEAD.md
@@ -164,7 +164,7 @@ jobs:
164164
needs: [ create_release ]
165165
steps:
166166
- name: Download Artifact
167-
uses: actions/download-artifact@v5
167+
uses: actions/download-artifact@v7
168168
with:
169169
name: ${{ env.PACKAGE_NAME }}-${{ matrix.target }}
170170
path: ${{ env.PACKAGE_NAME }}-${{ matrix.target }}

0 commit comments

Comments
 (0)