Skip to content

Commit 3227c09

Browse files
chore(deps): bump the actions group across 1 directory with 4 updates (#683)
Bumps the actions group with 4 updates in the / directory: [rharkor/caching-for-turbo](https://github.com/rharkor/caching-for-turbo), [github/codeql-action](https://github.com/github/codeql-action), [pnpm/action-setup](https://github.com/pnpm/action-setup) and [actions/github-script](https://github.com/actions/github-script). Updates `rharkor/caching-for-turbo` from 2.3.11 to 2.3.14 - [Release notes](https://github.com/rharkor/caching-for-turbo/releases) - [Commits](rharkor/caching-for-turbo@v2.3.11...v2.3.14) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v3...v4) Updates `pnpm/action-setup` from 5 to 6 - [Release notes](https://github.com/pnpm/action-setup/releases) - [Commits](pnpm/action-setup@v5...v6) Updates `actions/github-script` from 8 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v8...v9) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pnpm/action-setup dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: rharkor/caching-for-turbo dependency-version: 2.3.14 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 1935514 commit 3227c09

10 files changed

Lines changed: 20 additions & 20 deletions

.github/workflows/binary-preview.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: Install node deps
5959
run: bun install
6060
- name: Enable turborepo build cache
61-
uses: rharkor/caching-for-turbo@v2.3.11
61+
uses: rharkor/caching-for-turbo@v2.3.14
6262

6363
# Download macOS native binary
6464
- name: Download macOS native binary

.github/workflows/binary-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
- name: Install node deps
8787
run: bun install
8888
- name: Enable turborepo build cache
89-
uses: rharkor/caching-for-turbo@v2.3.11
89+
uses: rharkor/caching-for-turbo@v2.3.14
9090
# ------------------------------------------------------------
9191

9292
- name: get version from release tag

.github/workflows/build-native-macos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run: bun install
4848

4949
- name: Enable turborepo build cache
50-
uses: rharkor/caching-for-turbo@v2.3.11
50+
uses: rharkor/caching-for-turbo@v2.3.14
5151

5252
# Cache the Swift .build directory so compilation is fast on unchanged source
5353
- name: Compute Swift source hash

.github/workflows/codeql.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ jobs:
6363
steps:
6464
- uses: actions/checkout@v6
6565
- name: Initialize CodeQL
66-
uses: github/codeql-action/init@v3
66+
uses: github/codeql-action/init@v4
6767
with:
6868
languages: javascript-typescript
6969
config-file: ./.github/codeql/codeql-config.yml
7070
- name: Perform CodeQL Analysis
71-
uses: github/codeql-action/analyze@v3
71+
uses: github/codeql-action/analyze@v4
7272
with:
7373
category: javascript-typescript
7474

@@ -80,12 +80,12 @@ jobs:
8080
steps:
8181
- uses: actions/checkout@v6
8282
- name: Initialize CodeQL
83-
uses: github/codeql-action/init@v3
83+
uses: github/codeql-action/init@v4
8484
with:
8585
languages: actions
8686
config-file: ./.github/codeql/codeql-config.yml
8787
- name: Perform CodeQL Analysis
88-
uses: github/codeql-action/analyze@v3
88+
uses: github/codeql-action/analyze@v4
8989
with:
9090
category: actions
9191

@@ -97,7 +97,7 @@ jobs:
9797
steps:
9898
- uses: actions/checkout@v6
9999
- name: Initialize CodeQL
100-
uses: github/codeql-action/init@v3
100+
uses: github/codeql-action/init@v4
101101
with:
102102
languages: swift
103103
config-file: ./.github/codeql/codeql-config.yml
@@ -106,7 +106,7 @@ jobs:
106106
cd packages/encryption-binary-swift/swift
107107
swift build
108108
- name: Perform CodeQL Analysis
109-
uses: github/codeql-action/analyze@v3
109+
uses: github/codeql-action/analyze@v4
110110
with:
111111
category: swift
112112

@@ -118,11 +118,11 @@ jobs:
118118
steps:
119119
- uses: actions/checkout@v6
120120
- name: Initialize CodeQL
121-
uses: github/codeql-action/init@v3
121+
uses: github/codeql-action/init@v4
122122
with:
123123
languages: rust
124124
config-file: ./.github/codeql/codeql-config.yml
125125
- name: Perform CodeQL Analysis
126-
uses: github/codeql-action/analyze@v3
126+
uses: github/codeql-action/analyze@v4
127127
with:
128128
category: rust

.github/workflows/framework-tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
run: bun install
5959

6060
- name: Enable turborepo build cache
61-
uses: rharkor/caching-for-turbo@v2.3.11
61+
uses: rharkor/caching-for-turbo@v2.3.14
6262

6363
- name: Build libraries
6464
run: bun run build:libs
@@ -93,7 +93,7 @@ jobs:
9393
node-version: '24.x'
9494

9595
- name: Setup pnpm
96-
uses: pnpm/action-setup@v5
96+
uses: pnpm/action-setup@v6
9797
with:
9898
version: 10
9999

.github/workflows/notarize-native-macos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: bun install
3838

3939
- name: Enable turborepo build cache
40-
uses: rharkor/caching-for-turbo@v2.3.11
40+
uses: rharkor/caching-for-turbo@v2.3.14
4141

4242
- name: Build varlock libs
4343
run: bun run build:libs

.github/workflows/pr-labeler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
pull-requests: write
1919
steps:
2020
- name: Label PR based on maintainer status
21-
uses: actions/github-script@v8
21+
uses: actions/github-script@v9
2222
with:
2323
script: |
2424
const MAINTAINERS = 'theoephraim philmillman'.split(' ');

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
- name: Install node deps
8686
run: bun install
8787
- name: Enable turborepo build cache
88-
uses: rharkor/caching-for-turbo@v2.3.11
88+
uses: rharkor/caching-for-turbo@v2.3.14
8989

9090
# Ensure npm 11.5.1 or later is installed (for trusted publishing)
9191
- name: Update npm

.github/workflows/smoke-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
run: bun install
5757

5858
- name: Enable turborepo build cache
59-
uses: rharkor/caching-for-turbo@v2.3.11
59+
uses: rharkor/caching-for-turbo@v2.3.14
6060

6161
- name: Build varlock and integrations
6262
run: bun run build:libs
@@ -142,7 +142,7 @@ jobs:
142142
node-version: ${{ matrix.node-version }}
143143

144144
- name: Setup pnpm
145-
uses: pnpm/action-setup@v5
145+
uses: pnpm/action-setup@v6
146146
with:
147147
version: 10
148148

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Install js deps (w/ bun)
3434
run: bun install
3535
- name: Enable turborepo build cache
36-
uses: rharkor/caching-for-turbo@v2.3.11
36+
uses: rharkor/caching-for-turbo@v2.3.14
3737

3838
# ------------------------------------------------------------
3939
- name: Bumpy release plan check
@@ -174,7 +174,7 @@ jobs:
174174
- name: Install node deps
175175
run: bun install
176176
- name: Enable turborepo build cache
177-
uses: rharkor/caching-for-turbo@v2.3.11
177+
uses: rharkor/caching-for-turbo@v2.3.14
178178

179179
# Get signed macOS .app if varlock is being released
180180
# If the macOS build ran this run, download the artifact directly

0 commit comments

Comments
 (0)