Skip to content

Commit

Permalink
Update Github Actions [API-2265] (#924)
Browse files Browse the repository at this point in the history
  • Loading branch information
emreyigit authored Oct 14, 2024
1 parent 7a980d8 commit 1d10e36
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/actions/install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ runs:
# Install .NET
- name: Install .NET
if: inputs.dotnet == 'true'
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
3.1.x
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/assign-milestones.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
# checkout the hazelcast/hazelcast-csharp-client repository
# including all submodules, we are going to need them
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
# checkout the hazelcast/hazelcast-csharp-client repository
# bare minimum - just to use actions
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
steps:

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 2 # needed to validate parents
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:

# checkout the hazelcast/hazelcast-csharp-client repository
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:

# checkout the hazelcast/hazelcast-csharp-client repository
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -215,7 +215,7 @@ jobs:
# checkout the hazelcast/hazelcast-csharp-client repository
# including all submodules, we are going to need them
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
submodules: true
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:
# checkout documentation
- name: Checkout documentation
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
ref: gh-pages
Expand Down Expand Up @@ -289,7 +289,7 @@ jobs:

# checkout the hazelcast/hazelcast-csharp-client repository
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -303,7 +303,7 @@ jobs:

# checkout the hazelcast/hazelcast-csharp-client repository
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
submodules: true
Expand All @@ -319,7 +319,7 @@ jobs:
# "${{ github.token }} is scoped to the current repository, so if you want to checkout a different
# repository that is private you will need to provide your own PAT."
- name: Checkout devops
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: hazelcast/DevOps
ref: master
Expand Down Expand Up @@ -367,7 +367,7 @@ jobs:
# checkout documentation
- name: Checkout documentation
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
ref: gh-pages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
# checkout the hazelcast/hazelcast-csharp-client repository
# no need for submodules, but we need the .github directory
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
submodules: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/get-frameworks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# checkout the hazelcast/hazelcast-csharp-client repository
# no need for submodules here
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/trigger-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# check the repository out
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -36,7 +36,7 @@ jobs:
# "${{ github.token }} is scoped to the current repository, so if you want to checkout a different
# repository that is private you will need to provide your own PAT."
- name: Checkout devops
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: hazelcast/DevOps
ref: master
Expand Down

0 comments on commit 1d10e36

Please sign in to comment.