Skip to content

Commit b3a5e13

Browse files
chore(deps): bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 9284176 commit b3a5e13

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

.github/workflows/00-init.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1515
steps:
1616
- name: ⏬ Checkout repo
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: 🔄 Init PNPM
2020
uses: ./.github/actions/pnpm-init

.github/workflows/00-scan-secrets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1010
steps:
1111
- name: ⏬ Checkout repo
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515

.github/workflows/01-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1111
steps:
1212
- name: ⏬ Checkout repo
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414

1515
- name: 🔄 Init PNPM
1616
uses: ./.github/actions/pnpm-init

.github/workflows/01-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1111
steps:
1212
- name: ⏬ Checkout repo
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414

1515
- name: 🔄 Init PNPM
1616
uses: ./.github/actions/pnpm-init

.github/workflows/01-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1111
steps:
1212
- name: ⏬ Checkout repo
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414

1515
- name: ⏬ Install fonttools
1616
run: |

.github/workflows/02-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1111
steps:
1212
- name: ⏬ Checkout repo
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414

1515
- name: 🔄 Init PNPM
1616
uses: ./.github/actions/pnpm-init

.github/workflows/99-codeql-analysis.yml

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

1515
steps:
1616
- name: ⏬ Checkout repo
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: 🔄 Initialize CodeQL
2020
uses: github/codeql-action/init@v3

.github/workflows/99-dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
99
steps:
1010
- name: ⏬ Checkout repo
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v5
1212

1313
- name: 🔎 Dependency Review
1414
uses: actions/dependency-review-action@v4

.github/workflows/check-pnpm-overrides.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
with:
1919
fetch-depth: 0 # needed for PR creation
2020

0 commit comments

Comments
 (0)