Skip to content

Commit 7892d1f

Browse files
Bump the major group across 1 directory with 9 updates
Bumps the major group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [google-github-actions/auth](https://github.com/google-github-actions/auth) | `2.1.7` | `3.0.0` | | [google-github-actions/setup-gcloud](https://github.com/google-github-actions/setup-gcloud) | `2.1.2` | `3.0.1` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [google-github-actions/upload-cloud-storage](https://github.com/google-github-actions/upload-cloud-storage) | `2.2.1` | `3.0.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `6` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `7` | | [actions/create-github-app-token](https://github.com/actions/create-github-app-token) | `1` | `2` | | [actions/setup-node](https://github.com/actions/setup-node) | `4.1.0` | `6.1.0` | 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 `google-github-actions/auth` from 2.1.7 to 3.0.0 - [Release notes](https://github.com/google-github-actions/auth/releases) - [Changelog](https://github.com/google-github-actions/auth/blob/main/CHANGELOG.md) - [Commits](google-github-actions/auth@v2.1.7...v3.0.0) Updates `google-github-actions/setup-gcloud` from 2.1.2 to 3.0.1 - [Release notes](https://github.com/google-github-actions/setup-gcloud/releases) - [Changelog](https://github.com/google-github-actions/setup-gcloud/blob/main/CHANGELOG.md) - [Commits](google-github-actions/setup-gcloud@v2.1.2...v3.0.1) 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 `google-github-actions/upload-cloud-storage` from 2.2.1 to 3.0.0 - [Release notes](https://github.com/google-github-actions/upload-cloud-storage/releases) - [Changelog](https://github.com/google-github-actions/upload-cloud-storage/blob/main/CHANGELOG.md) - [Commits](google-github-actions/upload-cloud-storage@v2.2.1...v3.0.0) 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 `actions/create-github-app-token` from 1 to 2 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](actions/create-github-app-token@v1...v2) Updates `actions/setup-node` from 4.1.0 to 6.1.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4.1.0...v6.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major - dependency-name: google-github-actions/auth dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: major - dependency-name: google-github-actions/setup-gcloud dependency-version: 3.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: major - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major - dependency-name: google-github-actions/upload-cloud-storage dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: major - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major - dependency-name: actions/create-github-app-token dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major - dependency-name: actions/setup-node dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 749d2f7 commit 7892d1f

File tree

7 files changed

+23
-23
lines changed

7 files changed

+23
-23
lines changed

.github/workflows/cargo-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# Remove this when it no longer FTBFS on `ring` in CI.
3232
CARGO_PROFILE_TEST_BUILD_OVERRIDE_DEBUG: true
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v6
3535
- uses: actions-rust-lang/setup-rust-toolchain@v1
3636
- name: Install dependencies
3737
run: |

.github/workflows/cargo-clippy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
# Remove this when it no longer FTBFS on `ring` in CI.
3131
CARGO_PROFILE_TEST_BUILD_OVERRIDE_DEBUG: true
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v6
3434
- uses: actions-rust-lang/setup-rust-toolchain@v1
3535
with:
3636
components: clippy

.github/workflows/cargo-fmt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# Remove this when it no longer FTBFS on `ring` in CI.
3232
CARGO_PROFILE_TEST_BUILD_OVERRIDE_DEBUG: true
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v6
3535
- uses: actions-rust-lang/setup-rust-toolchain@v1
3636
with:
3737
components: rustfmt

.github/workflows/cargo-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# Remove this when it no longer FTBFS on `ring` in CI.
2929
CARGO_PROFILE_TEST_BUILD_OVERRIDE_DEBUG: true
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v6
3232
- uses: actions-rust-lang/setup-rust-toolchain@v1
3333
- uses: taiki-e/install-action@cargo-llvm-cov
3434
- uses: taiki-e/install-action@nextest

.github/workflows/make-release.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
name: make release
1414
runs-on: ${{ matrix.os }}
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
- name: 'Authenticate to Google Cloud'
18-
uses: 'google-github-actions/auth@v2.1.7'
18+
uses: 'google-github-actions/auth@v3.0.0'
1919
with:
2020
credentials_json: '${{ secrets.GOOGLE_CLOUD_DL_SA }}'
2121
- name: Set up Cloud SDK
22-
uses: google-github-actions/setup-gcloud@v2.1.2
22+
uses: google-github-actions/setup-gcloud@v3.0.1
2323
with:
2424
project_id: zooapi
2525
- name: Install latest nightly
@@ -41,17 +41,17 @@ jobs:
4141
4242
cargo install toml-cli
4343
- name: Cache cargo registry
44-
uses: actions/cache@v4
44+
uses: actions/cache@v5
4545
with:
4646
path: ~/.cargo/registry
4747
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
4848
- name: Cache cargo index
49-
uses: actions/cache@v4
49+
uses: actions/cache@v5
5050
with:
5151
path: ~/.cargo/git
5252
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
5353
- name: Cache cargo build
54-
uses: actions/cache@v4
54+
uses: actions/cache@v5
5555
with:
5656
path: target
5757
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
@@ -70,19 +70,19 @@ jobs:
7070
cp cross/README.md cross/${{matrix.os}}-${{github.ref_name}}-README.md
7171
- name: 'upload binary files'
7272
id: upload-files
73-
uses: google-github-actions/upload-cloud-storage@v2.2.1
73+
uses: google-github-actions/upload-cloud-storage@v3.0.0
7474
with:
7575
path: releases
7676
destination: dl.kittycad.io
7777
# Store the binary artifacts for retrival later.
7878
- name: Upload artifacts
79-
uses: actions/upload-artifact@v4
79+
uses: actions/upload-artifact@v6
8080
with:
8181
name: release-${{ matrix.os }}-${{github.ref_name}}
8282
path: ./cross
8383
# Store the readme as an artifact so we can combine the two.
8484
- name: Archive the README.md data
85-
uses: actions/upload-artifact@v4
85+
uses: actions/upload-artifact@v6
8686
with:
8787
name: ${{matrix.os}}-${{github.ref_name}}-README.md
8888
path: ${{github.workspace}}/cross/${{matrix.os}}-${{github.ref_name}}-README.md
@@ -91,21 +91,21 @@ jobs:
9191
needs: [makerelease]
9292
name: createrelease
9393
steps:
94-
- uses: actions/checkout@v4
94+
- uses: actions/checkout@v6
9595
- name: Install latest nightly
9696
uses: dtolnay/rust-toolchain@stable
97-
- uses: actions/download-artifact@v4
97+
- uses: actions/download-artifact@v7
9898
with:
9999
name: release-macos-latest-${{github.ref_name}}
100100
path: build
101-
- uses: actions/download-artifact@v4
101+
- uses: actions/download-artifact@v7
102102
with:
103103
name: release-ubuntu-latest-${{github.ref_name}}
104104
path: build
105-
- uses: actions/download-artifact@v4
105+
- uses: actions/download-artifact@v7
106106
with:
107107
name: ubuntu-latest-${{github.ref_name}}-README.md
108-
- uses: actions/download-artifact@v4
108+
- uses: actions/download-artifact@v7
109109
with:
110110
name: macos-latest-${{github.ref_name}}-README.md
111111
- name: combine readmes

.github/workflows/update-spec-for-repos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ jobs:
1919
repo: [modeling-app]
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/create-github-app-token@v1
22+
- uses: actions/create-github-app-token@v2
2323
id: app-token
2424
with:
2525
# required
2626
app-id: ${{ secrets.GH_ORG_APP_ID }}
2727
private-key: ${{ secrets.GH_ORG_APP_PRIVATE_KEY }}
2828
owner: ${{ github.repository_owner }}
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v6
3030
# Checkout the repo since we will want to update the file there.
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v6
3232
with:
3333
repository: 'kittycad/${{ matrix.repo }}'
3434
path: ${{ matrix.repo }}

.github/workflows/validate-openapi-spec.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
format:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4
20-
- uses: actions/setup-node@v4.1.0
19+
- uses: actions/checkout@v6
20+
- uses: actions/setup-node@v6.1.0
2121
with:
2222
node-version: '18'
2323
- name: Install our tools

0 commit comments

Comments
 (0)