Skip to content

Commit 28469e0

Browse files
renovate[bot]vgrassia
authored andcommitted
[deps]: Update Minor github-actions updates (#14923)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> (cherry picked from commit 9786594)
1 parent 9cfdca3 commit 28469e0

16 files changed

+223
-44
lines changed

.github/workflows/build-browser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ jobs:
548548
uses: bitwarden/gh-actions/azure-logout@main
549549

550550
- name: Upload Sources
551-
uses: crowdin/github-action@f214c8723025f41fc55b2ad26e67b60b80b1885d # v2.7.1
551+
uses: crowdin/github-action@08713f00a50548bfe39b37e8f44afb53e7a802d4 # v2.12.0
552552
env:
553553
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
554554
CROWDIN_API_TOKEN: ${{ steps.retrieve-secrets.outputs.crowdin-api-token }}

.github/workflows/build-desktop.yml

Lines changed: 34 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ jobs:
225225
npm link ../sdk-internal
226226
227227
- name: Cache Native Module
228-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
228+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
229229
id: cache
230230
with:
231231
path: |
@@ -372,7 +372,7 @@ jobs:
372372
npm link ../sdk-internal
373373
374374
- name: Cache Native Module
375-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
375+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
376376
id: cache
377377
with:
378378
path: |
@@ -406,7 +406,7 @@ jobs:
406406
run: npm run dist:lin:arm64
407407

408408
- name: Upload tar.gz artifact
409-
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
409+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
410410
with:
411411
name: bitwarden_${{ env._PACKAGE_VERSION }}_arm64.tar.gz
412412
path: apps/desktop/dist/bitwarden_desktop_arm64.tar.gz
@@ -504,7 +504,7 @@ jobs:
504504
npm link ../sdk-internal
505505
506506
- name: Cache Native Module
507-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
507+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
508508
id: cache
509509
with:
510510
path: |
@@ -759,7 +759,7 @@ jobs:
759759
npm link ../sdk-internal
760760
761761
- name: Cache Native Module
762-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
762+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
763763
id: cache
764764
with:
765765
path: |
@@ -934,7 +934,12 @@ jobs:
934934
cache: 'npm'
935935
cache-dependency-path: '**/package-lock.json'
936936
node-version: ${{ env._NODE_VERSION }}
937-
937+
938+
- name: Set up Python
939+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
940+
with:
941+
python-version: '3.14'
942+
938943
- name: Set up Node-gyp
939944
run: python3 -m pip install setuptools
940945

@@ -948,14 +953,14 @@ jobs:
948953
949954
- name: Cache Build
950955
id: build-cache
951-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
956+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
952957
with:
953958
path: apps/desktop/build
954959
key: ${{ runner.os }}-${{ github.run_id }}-build
955960

956961
- name: Cache Safari
957962
id: safari-cache
958-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
963+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
959964
with:
960965
path: apps/browser/dist/Safari
961966
key: ${{ runner.os }}-${{ github.run_id }}-safari-extension
@@ -1101,7 +1106,7 @@ jobs:
11011106
npm link ../sdk-internal
11021107
11031108
- name: Cache Native Module
1104-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
1109+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
11051110
id: cache
11061111
with:
11071112
path: |
@@ -1161,7 +1166,12 @@ jobs:
11611166
cache: 'npm'
11621167
cache-dependency-path: '**/package-lock.json'
11631168
node-version: ${{ env._NODE_VERSION }}
1164-
1169+
1170+
- name: Set up Python
1171+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
1172+
with:
1173+
python-version: '3.14'
1174+
11651175
- name: Set up Node-gyp
11661176
run: python3 -m pip install setuptools
11671177

@@ -1175,14 +1185,14 @@ jobs:
11751185
11761186
- name: Get Build Cache
11771187
id: build-cache
1178-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
1188+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
11791189
with:
11801190
path: apps/desktop/build
11811191
key: ${{ runner.os }}-${{ github.run_id }}-build
11821192

11831193
- name: Setup Safari Cache
11841194
id: safari-cache
1185-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
1195+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
11861196
with:
11871197
path: apps/browser/dist/Safari
11881198
key: ${{ runner.os }}-${{ github.run_id }}-safari-extension
@@ -1312,7 +1322,7 @@ jobs:
13121322
npm link ../sdk-internal
13131323
13141324
- name: Cache Native Module
1315-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
1325+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
13161326
id: cache
13171327
with:
13181328
path: |
@@ -1422,7 +1432,12 @@ jobs:
14221432
cache: 'npm'
14231433
cache-dependency-path: '**/package-lock.json'
14241434
node-version: ${{ env._NODE_VERSION }}
1425-
1435+
1436+
- name: Set up Python
1437+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
1438+
with:
1439+
python-version: '3.14'
1440+
14261441
- name: Set up Node-gyp
14271442
run: python3 -m pip install setuptools
14281443

@@ -1436,14 +1451,14 @@ jobs:
14361451
14371452
- name: Get Build Cache
14381453
id: build-cache
1439-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
1454+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
14401455
with:
14411456
path: apps/desktop/build
14421457
key: ${{ runner.os }}-${{ github.run_id }}-build
14431458

14441459
- name: Setup Safari Cache
14451460
id: safari-cache
1446-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
1461+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
14471462
with:
14481463
path: apps/browser/dist/Safari
14491464
key: ${{ runner.os }}-${{ github.run_id }}-safari-extension
@@ -1581,7 +1596,7 @@ jobs:
15811596
npm link ../sdk-internal
15821597
15831598
- name: Cache Native Module
1584-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
1599+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
15851600
id: cache
15861601
with:
15871602
path: |
@@ -1702,7 +1717,7 @@ jobs:
17021717
if: |
17031718
github.event_name != 'pull_request_target'
17041719
&& (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/rc' || github.ref == 'refs/heads/hotfix-rc-desktop')
1705-
uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2.0.0
1720+
uses: slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a # v2.1.1
17061721
with:
17071722
channel-id: C074F5UESQ0
17081723
method: chat.postMessage
@@ -1760,7 +1775,7 @@ jobs:
17601775
uses: bitwarden/gh-actions/azure-logout@main
17611776

17621777
- name: Upload Sources
1763-
uses: crowdin/github-action@f214c8723025f41fc55b2ad26e67b60b80b1885d # v2.7.1
1778+
uses: crowdin/github-action@08713f00a50548bfe39b37e8f44afb53e7a802d4 # v2.12.0
17641779
env:
17651780
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17661781
CROWDIN_API_TOKEN: ${{ steps.retrieve-secrets.outputs.crowdin-api-token }}

.github/workflows/build-web.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ jobs:
204204
205205
########## Set up Docker ##########
206206
- name: Set up Docker
207-
uses: docker/setup-docker-action@b60f85385d03ac8acfca6d9996982511d8620a19 # v4.3.0
207+
uses: docker/setup-docker-action@efe9e3891a4f7307e689f2100b33a155b900a608 # v4.5.0
208208
with:
209209
daemon-config: |
210210
{
@@ -215,10 +215,10 @@ jobs:
215215
}
216216
217217
- name: Set up QEMU emulators
218-
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
218+
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 # v3.7.0
219219

220220
- name: Set up Docker Buildx
221-
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0
221+
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
222222

223223
########## ACRs ##########
224224
- name: Log in to Azure
@@ -273,7 +273,7 @@ jobs:
273273

274274
- name: Build Docker image
275275
id: build-container
276-
uses: docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d # v6.12.0
276+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
277277
with:
278278
build-args: |
279279
NODE_VERSION=${{ env._NODE_VERSION }}
@@ -315,7 +315,7 @@ jobs:
315315

316316
- name: Install Cosign
317317
if: github.event_name != 'pull_request_target' && github.ref == 'refs/heads/main'
318-
uses: sigstore/cosign-installer@3454372f43399081ed03b604cb2d021dabca52bb # v3.8.2
318+
uses: sigstore/cosign-installer@7e8b541eb2e61bf99390e1afd4be13a184e9ebc5 # v3.10.1
319319

320320
- name: Sign image with Cosign
321321
if: github.event_name != 'pull_request_target' && github.ref == 'refs/heads/main'
@@ -334,7 +334,7 @@ jobs:
334334
- name: Scan Docker image
335335
if: ${{ needs.setup.outputs.has_secrets == 'true' }}
336336
id: container-scan
337-
uses: anchore/scan-action@2c901ab7378897c01b8efaa2d0c9bf519cc64b9e # v6.2.0
337+
uses: anchore/scan-action@1638637db639e0ade3258b51db49a9a137574c3e # v6.5.1
338338
with:
339339
image: ${{ steps.image-name.outputs.name }}
340340
fail-build: false
@@ -390,7 +390,7 @@ jobs:
390390
uses: bitwarden/gh-actions/azure-logout@main
391391

392392
- name: Upload Sources
393-
uses: crowdin/github-action@f214c8723025f41fc55b2ad26e67b60b80b1885d # v2.7.1
393+
uses: crowdin/github-action@08713f00a50548bfe39b37e8f44afb53e7a802d4 # v2.12.0
394394
env:
395395
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
396396
CROWDIN_API_TOKEN: ${{ steps.retrieve-secrets.outputs.crowdin-api-token }}

.github/workflows/chromatic.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565

6666
- name: Cache NPM
6767
id: npm-cache
68-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
68+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
6969
with:
7070
path: "~/.npm"
7171
key: ${{ runner.os }}-npm-chromatic-${{ hashFiles('**/package-lock.json') }}
@@ -98,7 +98,7 @@ jobs:
9898
uses: bitwarden/gh-actions/azure-logout@main
9999

100100
- name: Publish to Chromatic
101-
uses: chromaui/action@d0795df816d05c4a89c80295303970fddd247cce # v13.1.4
101+
uses: chromaui/action@ac86f2ff0a458ffbce7b40698abd44c0fa34d4b6 # v13.3.3
102102
with:
103103
token: ${{ secrets.GITHUB_TOKEN }}
104104
projectToken: ${{ steps.get-kv-secrets.outputs.CHROMATIC-PROJECT-TOKEN }}

.github/workflows/crowdin-pull.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
uses: bitwarden/gh-actions/azure-logout@main
5050

5151
- name: Generate GH App token
52-
uses: actions/create-github-app-token@30bf6253fa41bdc8d1501d202ad15287582246b4 # v2.0.3
52+
uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
5353
id: app-token
5454
with:
5555
app-id: ${{ steps.get-kv-secrets.outputs.BW-GHAPP-ID }}

.github/workflows/lint-crowdin-config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
uses: bitwarden/gh-actions/azure-logout@main
4646

4747
- name: Lint ${{ matrix.app.name }} config
48-
uses: crowdin/github-action@f214c8723025f41fc55b2ad26e67b60b80b1885d # v2.7.1
48+
uses: crowdin/github-action@08713f00a50548bfe39b37e8f44afb53e7a802d4 # v2.12.0
4949
env:
5050
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5151
CROWDIN_PROJECT_ID: ${{ matrix.app.project_id }}

.github/workflows/publish-desktop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -348,9 +348,9 @@ jobs:
348348
run: wget "https://github.com/bitwarden/clients/releases/download/$_RELEASE_TAG/macos-build-number.json"
349349

350350
- name: Setup Ruby and Install Fastlane
351-
uses: ruby/setup-ruby@ca041f971d66735f3e5ff1e21cc13e2d51e7e535 # v1.233.0
351+
uses: ruby/setup-ruby@d5126b9b3579e429dd52e51e68624dda2e05be25 # v1.267.0
352352
with:
353-
ruby-version: '3.0'
353+
ruby-version: '3.4.7'
354354
bundler-cache: false
355355
working-directory: apps/desktop
356356

.github/workflows/release-browser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140
141141
- name: Create release
142142
if: ${{ github.event.inputs.release_type != 'Dry Run' }}
143-
uses: ncipollo/release-action@cdcc88a9acf3ca41c16c37bb7d21b9ad48560d87 # v1.15.0
143+
uses: ncipollo/release-action@b7eabc95ff50cbeeedec83973935c8f306dfcd0b # v1.20.0
144144
with:
145145
artifacts: 'browser-source-${{ needs.setup.outputs.release_version }}.zip,
146146
dist-chrome-${{ needs.setup.outputs.release_version }}.zip,

.github/workflows/release-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080

8181
- name: Create release
8282
if: ${{ inputs.release_type != 'Dry Run' }}
83-
uses: ncipollo/release-action@cdcc88a9acf3ca41c16c37bb7d21b9ad48560d87 # v1.15.0
83+
uses: ncipollo/release-action@b7eabc95ff50cbeeedec83973935c8f306dfcd0b # v1.20.0
8484
env:
8585
PKG_VERSION: ${{ needs.setup.outputs.release_version }}
8686
with:

.github/workflows/release-desktop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
run: mv "Bitwarden-$PKG_VERSION-universal.pkg" "Bitwarden-$PKG_VERSION-universal.pkg.archive"
100100

101101
- name: Create Release
102-
uses: ncipollo/release-action@cdcc88a9acf3ca41c16c37bb7d21b9ad48560d87 # v1.15.0
102+
uses: ncipollo/release-action@b7eabc95ff50cbeeedec83973935c8f306dfcd0b # v1.20.0
103103
if: ${{ steps.release_channel.outputs.channel == 'latest' && github.event.inputs.release_type != 'Dry Run' }}
104104
env:
105105
PKG_VERSION: ${{ steps.version.outputs.version }}

0 commit comments

Comments
 (0)