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/Auto-Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Auto-Release
uses: PSModule/Auto-Release@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/TestWorkflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
steps:
# Need to check out as part of the test, as its a local action
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Action-Test
uses: ./
Expand All @@ -76,7 +76,7 @@ jobs:
steps:
# Need to check out as part of the test, as its a local action
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

# # Not a supported way of running the action
# # This syntax is specifically for using a function in a specific module
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
steps:
# Need to check out as part of the test, as its a local action
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Action-Test
uses: ./
Expand Down Expand Up @@ -324,7 +324,7 @@ jobs:
steps:
# Need to check out as part of the test, as its a local action
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Action-Test
uses: ./
Expand Down Expand Up @@ -386,7 +386,7 @@ jobs:
steps:
# Need to check out as part of the test, as its a local action
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Action-Test
uses: ./
Expand All @@ -404,7 +404,7 @@ jobs:
steps:
# Need to check out as part of the test, as its a local action
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Action-Test
uses: ./
Expand All @@ -430,7 +430,7 @@ jobs:
steps:
# Need to check out as part of the test, as its a local action
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Action-Test
uses: ./
Expand All @@ -456,7 +456,7 @@ jobs:
steps:
# Need to check out as part of the test, as its a local action
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Action-Test
uses: ./
Expand All @@ -482,7 +482,7 @@ jobs:
steps:
# Need to check out as part of the test, as its a local action
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Action-Test
uses: ./
Expand Down Expand Up @@ -517,7 +517,7 @@ jobs:
steps:
# Need to check out as part of the test, as its a local action
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Action-Test
uses: ./
Expand Down Expand Up @@ -553,7 +553,7 @@ jobs:
steps:
# Need to check out as part of the test, as its a local action
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

# Login to Azure to enable KeyVault access
- name: Login to Azure
Expand Down Expand Up @@ -602,7 +602,7 @@ jobs:
steps:
# Need to check out as part of the test, as its a local action
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

# Login to Azure to enable KeyVault access
- name: Login to Azure
Expand Down Expand Up @@ -650,7 +650,7 @@ jobs:
steps:
# Need to check out as part of the test, as its a local action
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Action-Test with PreserveCredentials false
uses: ./
Expand Down
Loading