Skip to content

Commit

Permalink
Update checkout@v3 -> @v4 (#71)
Browse files Browse the repository at this point in the history
* Update checkout@v3 -> @v4
  • Loading branch information
fiddlermikey authored Jan 26, 2024
1 parent d22d866 commit ccaa805
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/assign-env-from-json.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ jobs:
name: Set workflow variables from integration-manifest.json
steps:
- name: checkout-json-file
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
path: src

- name: checkout-action
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: fiddlermikey/assign-from-json
path: tools
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
dotnet-build-and-release:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup dotnet
uses: actions/setup-dotnet@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/generate-readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
token: ${{ secrets.token }}

- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
repository: 'Keyfactor/actions'
path: './actions/'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Check out the code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Display base.ref from Pull Request
if: github.event_name == 'pull_request'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run-goreleaser:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# Allow goreleaser to access older tag information.
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kf-delete-prereleases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Deleting prereleases
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.token}}
- name: Run delete-prereleases action
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kf-update-description.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: A CI job to read the description from integration-manifest.json
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repo-token: ${{ secrets.token}}
- name: Update description from integration-manifest.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kf-update-topics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: A test job to read the integration_type from integration-manifest.json
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repo-token: ${{ secrets.token}}
- name: Update topic from integration_type
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/starter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
name: Detect Primary Language
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Read primary language
Expand All @@ -47,7 +47,7 @@ jobs:
name: Check for .goreleaser file
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Check file existence
Expand All @@ -62,7 +62,7 @@ jobs:
platform_matrix: ${{ steps.vars.outputs.platform_matrix }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Create an array from platform_list input #
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-catalog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
token: ${{ secrets.token }}
path: './catalog-temp/'
Expand Down

0 comments on commit ccaa805

Please sign in to comment.