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
12 changes: 6 additions & 6 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
infra-test-alt: ${{ steps.filter.outputs.infrastructure-test-alt }}
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4 # not needed for pull_request
uses: actions/checkout@v5 # not needed for pull_request
if: |
github.event_name == 'push'
- uses: dorny/paths-filter@v3 # cspell:ignore dorny
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: 🏗 Setup Python
uses: finleyfamily/[email protected]
with:
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
AWS_SECRET_ACCESS_KEY: test
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: 🏗 Setup Node
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: 🏗 Setup Node
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
AWS_SECRET_ACCESS_KEY: test
steps:
- name: ⤵️ Check out code from GitHub (complete)
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: 🏗 Setup Node
Expand Down Expand Up @@ -237,7 +237,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out code from GitHub (complete)
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: 🏗 Setup Python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-maker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: 🚀 Run Label Maker
uses: crazy-max/ghaction-github-labeler@v5
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out code from GitHub (complete)
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: 🏗 Setup Python
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: 🚀 Microsoft Teams Notification
uses: skitionek/[email protected] # cspell:ignore skitionek
if: always()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: 🏗 Setup Node
uses: actions/setup-node@v4
with:
Expand Down
Loading