Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/algolia-crawl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: check out code 🛎d
uses: actions/checkout@v3
uses: actions/checkout@v4
# when scraping the site, inject secrets as environment variables
# then pass their values into the Docker container using "-e" syntax
# and inject config.json contents as another variable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/app-manager-release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
generate-release-notes-pr:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Generate Release Notes
id: release-notes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kubernetes-installer-release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
generate-release-notes-pr:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Generate Release Notes
id: release-notes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/replicated-sdk-release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
generate-release-notes-pr:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Generate Release Notes
id: release-notes
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/vendor-portal-release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
outputs:
releaseNotes: ${{ steps.release-notes.outputs.release-notes }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Generate Release Notes
id: release-notes
Expand All @@ -32,7 +32,7 @@ jobs:
needs: generate-release-notes
if: ${{ needs.generate-release-notes.outputs.releaseNotes != '' || needs.generate-release-notes.outputs.releaseNotes != null }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Update Release Notes
env:
PATTERN: ".+RELEASE_NOTES_PLACEHOLDER.+"
Expand Down
Loading