Skip to content

Commit 97b221c

Browse files
authored
Merge pull request #3456 from replicatedhq/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents 7864731 + ef85443 commit 97b221c

6 files changed

+7
-7
lines changed

.github/workflows/algolia-crawl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: check out code 🛎d
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414
# when scraping the site, inject secrets as environment variables
1515
# then pass their values into the Docker container using "-e" syntax
1616
# and inject config.json contents as another variable

.github/workflows/app-manager-release-notes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
generate-release-notes-pr:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515

1616
- name: Generate Release Notes
1717
id: release-notes

.github/workflows/embedded-cluster-release-notes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
generate-release-notes-pr:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515

1616
- name: Generate Release Notes
1717
id: release-notes

.github/workflows/kubernetes-installer-release-notes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
generate-release-notes-pr:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515

1616
- name: Generate Release Notes
1717
id: release-notes

.github/workflows/replicated-sdk-release-notes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
generate-release-notes-pr:
1515
runs-on: ubuntu-22.04
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818

1919
- name: Generate Release Notes
2020
id: release-notes

.github/workflows/vendor-portal-release-notes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
outputs:
1414
releaseNotes: ${{ steps.release-notes.outputs.release-notes }}
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717

1818
- name: Generate Release Notes
1919
id: release-notes
@@ -32,7 +32,7 @@ jobs:
3232
needs: generate-release-notes
3333
if: ${{ needs.generate-release-notes.outputs.releaseNotes != '' || needs.generate-release-notes.outputs.releaseNotes != null }}
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v5
3636
- name: Update Release Notes
3737
env:
3838
PATTERN: ".+RELEASE_NOTES_PLACEHOLDER.+"

0 commit comments

Comments
 (0)