Skip to content

Commit 4a4c297

Browse files
authored
chore(deps): bump GitHub Actions dependencies (#41485)
1 parent ea70952 commit 4a4c297

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/ci-code-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Restore TypeScript incremental cache
5353
id: restore-typecheck
5454
if: matrix.check == 'ts'
55-
uses: actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0
55+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
5656
with:
5757
path: ./apps/meteor/tsconfig.typecheck.tsbuildinfo
5858
key: typecheck-cache-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
@@ -101,7 +101,7 @@ jobs:
101101
- name: Restore ESLint cache
102102
id: restore-eslint
103103
if: matrix.check == 'lint'
104-
uses: actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0
104+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
105105
with:
106106
path: ./apps/meteor/.eslintcache
107107
key: eslintcache-${{ runner.os }}-${{ hashFiles('yarn.lock') }}

.github/workflows/ci-test-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
118118
- name: Login to GitHub Container Registry
119119
if: (github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'release' || github.ref == 'refs/heads/develop') && github.actor != 'dependabot[bot]'
120-
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
120+
uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0
121121
with:
122122
registry: ghcr.io
123123
username: ${{ secrets.CR_USER }}

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ jobs:
234234
runs-on: ubuntu-24.04-arm
235235
steps:
236236
- name: Cache build
237-
uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0
237+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
238238
id: packages-cache-build
239239
with:
240240
path: |
@@ -280,7 +280,7 @@ jobs:
280280
} >> "$GITHUB_STEP_SUMMARY"
281281
282282
- name: Cache vite
283-
uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0
283+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
284284
if: steps.packages-cache-build.outputs.cache-hit != 'true'
285285
with:
286286
path: ./node_modules/.vite
@@ -468,7 +468,7 @@ jobs:
468468

469469
- name: Login to GitHub Container Registry
470470
if: github.actor != 'dependabot[bot]' && (github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'release' || github.ref == 'refs/heads/develop')
471-
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
471+
uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0
472472
with:
473473
registry: ghcr.io
474474
username: ${{ secrets.CR_USER }}
@@ -861,7 +861,7 @@ jobs:
861861

862862
- name: Login to GitHub Container Registry
863863
if: (github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'release' || github.ref == 'refs/heads/develop') && github.actor != 'dependabot[bot]'
864-
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
864+
uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0
865865
with:
866866
registry: ghcr.io
867867
username: ${{ secrets.CR_USER }}
@@ -935,7 +935,7 @@ jobs:
935935
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
936936

937937
- name: Use Node.js
938-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
938+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
939939
with:
940940
node-version: ${{ needs.release-versions.outputs.node-version }}
941941

@@ -1115,13 +1115,13 @@ jobs:
11151115
ref: ${{ github.ref }}
11161116

11171117
- name: Login to DockerHub
1118-
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
1118+
uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0
11191119
with:
11201120
username: ${{ secrets.DOCKER_USER }}
11211121
password: ${{ secrets.DOCKER_PASS }}
11221122

11231123
- name: Login to GitHub Container Registry
1124-
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
1124+
uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0
11251125
with:
11261126
registry: ghcr.io
11271127
username: ${{ secrets.CR_USER }}

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
permissions:
1010
issues: write
1111
steps:
12-
- uses: actions/stale@eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899 # v10.3.0
12+
- uses: actions/stale@1e223db275d687790206a7acac4d1a11bd6fe629 # v10.4.0
1313
with:
1414
days-before-issue-stale: 14
1515
days-before-issue-close: 14

.github/workflows/update-version-durability.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2828

2929
- name: Use Node.js
30-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
30+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
3131
with:
3232
node-version: 22.22.3
3333

0 commit comments

Comments
 (0)