Skip to content

Commit eed9432

Browse files
authored
Merge pull request #2931 from replicatedhq/dependabot/github_actions/actions/checkout-4
Bump actions/checkout from 3 to 4
2 parents 03fa277 + 283f85b commit eed9432

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
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@v3
13+
uses: actions/checkout@v4
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-20.04
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
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-20.04
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
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@v3
17+
- uses: actions/checkout@v4
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@v3
16+
- uses: actions/checkout@v4
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@v3
35+
- uses: actions/checkout@v4
3636
- name: Update Release Notes
3737
env:
3838
PATTERN: ".+RELEASE_NOTES_PLACEHOLDER.+"

0 commit comments

Comments
 (0)