Skip to content

Commit 6aaa0d8

Browse files
(chore): Bump the github-actions group across 1 directory with 8 updates
Bumps the github-actions group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `6` | `7` | | [actions/setup-node](https://github.com/actions/setup-node) | `6` | `7` | | [actions/cache](https://github.com/actions/cache) | `5` | `6` | | [actions/configure-pages](https://github.com/actions/configure-pages) | `5` | `6` | | [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) | `3` | `5` | | [actions/deploy-pages](https://github.com/actions/deploy-pages) | `4` | `5` | | [actions/create-github-app-token](https://github.com/actions/create-github-app-token) | `3.1.1` | `3.2.0` | | [dorny/paths-filter](https://github.com/dorny/paths-filter) | `3` | `4` | Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v6...v7) Updates `actions/setup-node` from 6 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v6...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) Updates `actions/configure-pages` from 5 to 6 - [Release notes](https://github.com/actions/configure-pages/releases) - [Commits](actions/configure-pages@v5...v6) Updates `actions/upload-pages-artifact` from 3 to 5 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](actions/upload-pages-artifact@v3...v5) Updates `actions/deploy-pages` from 4 to 5 - [Release notes](https://github.com/actions/deploy-pages/releases) - [Commits](actions/deploy-pages@v4...v5) Updates `actions/create-github-app-token` from 3.1.1 to 3.2.0 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Changelog](https://github.com/actions/create-github-app-token/blob/main/CHANGELOG.md) - [Commits](actions/create-github-app-token@1b10c78...bcd2ba4) Updates `dorny/paths-filter` from 3 to 4 - [Release notes](https://github.com/dorny/paths-filter/releases) - [Changelog](https://github.com/dorny/paths-filter/blob/master/CHANGELOG.md) - [Commits](dorny/paths-filter@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/configure-pages dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/create-github-app-token dependency-version: 3.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/deploy-pages dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-pages-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: dorny/paths-filter dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 611cc57 commit 6aaa0d8

8 files changed

Lines changed: 28 additions & 28 deletions

File tree

.github/workflows/bundle-size.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
TURBO_TEAM: ${{ github.repository_owner }}
1919

2020
steps:
21-
- uses: actions/checkout@v6
21+
- uses: actions/checkout@v7
2222

2323
- name: 🚀 Setup a local cache server for Turborepo
2424
uses: felixmosh/turborepo-gh-artifacts@v4

.github/workflows/code-ql.yml

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

4444
steps:
4545
- name: 🛒 Checkout repository
46-
uses: actions/checkout@v6
46+
uses: actions/checkout@v7
4747

4848
# Initializes the CodeQL tools for scanning.
4949
- name: 🚀 Initialize CodeQL

.github/workflows/deploy-pages.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ jobs:
2121
contents: read
2222
actions: read
2323
steps:
24-
- uses: actions/checkout@v6
24+
- uses: actions/checkout@v7
2525
- name: Setup Node.js
26-
uses: actions/setup-node@v6
26+
uses: actions/setup-node@v7
2727
with:
2828
node-version: 20
2929

3030
- name: Cache dependencies
3131
id: cache
32-
uses: actions/cache@v5
32+
uses: actions/cache@v6
3333
with:
3434
path: '**/node_modules'
3535
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
@@ -66,10 +66,10 @@ jobs:
6666
cp -a packages/tooling/storybook/dist _site/storybook
6767
6868
- name: Configure Pages
69-
uses: actions/configure-pages@v5
69+
uses: actions/configure-pages@v6
7070

7171
- name: Upload Pages artifact
72-
uses: actions/upload-pages-artifact@v3
72+
uses: actions/upload-pages-artifact@v5
7373

7474
deploy:
7575
needs: build
@@ -83,4 +83,4 @@ jobs:
8383
steps:
8484
- name: Deploy to GitHub Pages
8585
id: deploy
86-
uses: actions/deploy-pages@v4
86+
uses: actions/deploy-pages@v5

.github/workflows/docs-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ jobs:
209209
YARN_ENABLE_SCRIPTS: "0"
210210
steps:
211211
- name: Checkout PR head (sandboxed)
212-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
212+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
213213
with:
214214
ref: ${{ inputs.head_sha || github.event.pull_request.head.sha }}
215215
repository: ${{ inputs.head_repo || github.event.pull_request.head.repo.full_name }}
@@ -219,7 +219,7 @@ jobs:
219219
persist-credentials: false
220220

221221
- name: Setup Node.js
222-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
222+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
223223
with:
224224
node-version: 20
225225

@@ -272,7 +272,7 @@ jobs:
272272
pushed_sha: ${{ steps.commit.outputs.pushed_sha }}
273273
steps:
274274
- name: Checkout the SHA the build ran against
275-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
275+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
276276
with:
277277
ref: ${{ inputs.head_sha || github.event.pull_request.head.sha }}
278278
repository: ${{ inputs.head_repo || github.event.pull_request.head.repo.full_name }}
@@ -373,7 +373,7 @@ jobs:
373373
steps:
374374
- name: Mint app token
375375
id: app-token
376-
uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1
376+
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
377377
with:
378378
client-id: ${{ secrets.OMRS_PR_BOT_CLIENT_ID }}
379379
private-key: ${{ secrets.OMRS_PR_BOT_PRIVATE_KEY }}

.github/workflows/docs-drift-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
- name: Mint app token
110110
if: steps.labels.outputs.needs_provenance == 'true'
111111
id: app-token
112-
uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1
112+
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
113113
with:
114114
client-id: ${{ secrets.OMRS_PR_BOT_CLIENT_ID }}
115115
private-key: ${{ secrets.OMRS_PR_BOT_PRIVATE_KEY }}
@@ -150,7 +150,7 @@ jobs:
150150
steps.pr.outputs.skip != 'true' &&
151151
steps.labels.outputs.pass != 'true' &&
152152
steps.provenance.outputs.verified != 'true'
153-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
153+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
154154
with:
155155
# Need full history so `git diff base...head` can resolve the
156156
# merge-base. blob:none keeps the clone cheap — `git diff

.github/workflows/docs-skip-label-guard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
steps:
2828
- name: Mint app token
2929
id: app-token
30-
uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1
30+
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
3131
with:
3232
client-id: ${{ secrets.OMRS_PR_BOT_CLIENT_ID }}
3333
private-key: ${{ secrets.OMRS_PR_BOT_PRIVATE_KEY }}

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- uses: actions/checkout@v6
20+
- uses: actions/checkout@v7
2121
- uses: tcort/github-action-markdown-link-check@v1
2222
with:
2323
max-depth: 4 # exclude the API docs

.github/workflows/e2e.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727

2828
steps:
2929
- name: 📥 Checkout repo
30-
uses: actions/checkout@v6
30+
uses: actions/checkout@v7
3131

3232
- name: 🔍 Check if any source code has changed
3333
id: changes
34-
uses: dorny/paths-filter@v3
34+
uses: dorny/paths-filter@v4
3535
with:
3636
filters: |
3737
test-sources:
@@ -58,19 +58,19 @@ jobs:
5858

5959
steps:
6060
- name: 📥 Checkout repo
61-
uses: actions/checkout@v6
61+
uses: actions/checkout@v7
6262

6363
- name: 📄 Copy test environment variables
6464
run: cp example.env .env
6565

6666
- name: 🛠️ Setup node
67-
uses: actions/setup-node@v6
67+
uses: actions/setup-node@v7
6868
with:
6969
node-version: 22
7070

7171
- name: 💾 Cache dependencies
7272
id: cache-dependencies
73-
uses: actions/cache@v5
73+
uses: actions/cache@v6
7474
with:
7575
path: '**/node_modules'
7676
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
@@ -90,7 +90,7 @@ jobs:
9090

9191
- name: 💾 Cache Playwright Browsers
9292
id: playwright-cache
93-
uses: actions/cache@v5
93+
uses: actions/cache@v6
9494
with:
9595
path: ~/.cache/ms-playwright
9696
key: ${{ runner.os }}-playwright-${{ hashFiles('**/yarn.lock') }}
@@ -126,16 +126,16 @@ jobs:
126126

127127
steps:
128128
- name: 📥 Checkout esm-core repo
129-
uses: actions/checkout@v6
129+
uses: actions/checkout@v7
130130

131131
- name: 🛠️ Setup node
132-
uses: actions/setup-node@v6
132+
uses: actions/setup-node@v7
133133
with:
134134
node-version: 22
135135

136136
- name: 💾 Cache dependencies
137137
id: cache-dependencies
138-
uses: actions/cache@v5
138+
uses: actions/cache@v6
139139
with:
140140
path: '**/node_modules'
141141
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
@@ -157,7 +157,7 @@ jobs:
157157
run: bash e2e/support/github/run-e2e-docker-env.sh
158158

159159
- name: 📥 Checkout to the ${{ matrix.repo }} main branch
160-
uses: actions/checkout@v6
160+
uses: actions/checkout@v7
161161
with:
162162
repository: openmrs/${{ matrix.repo }}
163163
ref: main
@@ -169,7 +169,7 @@ jobs:
169169

170170
- name: 💾 Cache dependencies for ${{ matrix.repo }}
171171
id: cache-other-repo-dependencies
172-
uses: actions/cache@v5
172+
uses: actions/cache@v6
173173
with:
174174
path: '**/node_modules'
175175
key: ${{ runner.os }}-${{ hashFiles('e2e_repo/**/yarn.lock') }}
@@ -181,7 +181,7 @@ jobs:
181181

182182
- name: 💾 Cache Playwright Browsers for ${{ matrix.repo }}
183183
id: playwright-cache
184-
uses: actions/cache@v5
184+
uses: actions/cache@v6
185185
with:
186186
path: ~/.cache/ms-playwright
187187
key: ${{ runner.os }}-playwright-${{ hashFiles('e2e_repo/**/yarn.lock') }}

0 commit comments

Comments
 (0)