Skip to content

Commit

Permalink
Merge pull request #3256 from infotroph/actions-node-bump
Browse files Browse the repository at this point in the history
[CI chore] Actions node bump
  • Loading branch information
infotroph authored Feb 13, 2024
2 parents 020ab1a + 39f54c8 commit 0fd3230
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
# checkout source code
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# install bookdown
- name: Install bookdown
run: |
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
# download documentation repo
- name: Checkout documentation repo
if: github.event_name == 'push'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ github.repository_owner }}/pecan-documentation
path: pecan-documentation
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
# checkout source code
- name: work around https://github.com/actions/checkout/issues/766
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
set-safe-directory: false

Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
# checkout source code
- name: work around https://github.com/actions/checkout/issues/766
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
set-safe-directory: false

Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
# checkout source code
- name: work around https://github.com/actions/checkout/issues/766
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
set-safe-directory: false

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

# install sipnet
- name: Check out SIPNET
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: PecanProject/sipnet
path: sipnet
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
# checkout source code
- name: work around https://github.com/actions/checkout/issues/766
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
set-safe-directory: false

Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
# checkout source code
- name: work around https://github.com/actions/checkout/issues/766
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
set-safe-directory: false

Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
# checkout source code
- name: work around https://github.com/actions/checkout/issues/766
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
set-safe-directory: false

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

# install sipnet
- name: Check out SIPNET
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: PecanProject/sipnet
path: sipnet
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/depends.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ jobs:
steps:
- name: Work around https://github.com/actions/checkout/issues/766
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
set-safe-directory: false

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
with:
driver: docker
buildkitd-flags: --debug
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ jobs:
steps:
- name: Work around https://github.com/actions/checkout/issues/766
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
set-safe-directory: false
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
with:
driver: docker
buildkitd-flags: --debug
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout source code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run tests
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/styler-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
run: echo '${{ steps.file_changes.outputs.files_modified }}'
- name: work around https://github.com/actions/checkout/issues/766
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
set-safe-directory: false
- uses: r-lib/actions/pr-fetch@master
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
steps:
- name: work around https://github.com/actions/checkout/issues/766
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
set-safe-directory: false
- uses: r-lib/actions/pr-fetch@v1
Expand Down

0 comments on commit 0fd3230

Please sign in to comment.