Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Sep 4, 2023
1 parent eb515c1 commit e928c2b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- id: set-json
run: |
jsonfile="build/matrix.json"
Expand All @@ -62,7 +62,7 @@ jobs:
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- id: set-json
run: |
jsonfile="build/matrix.json"
Expand All @@ -83,7 +83,7 @@ jobs:
fail-fast: false
matrix: ${{ fromJson(needs.generate-matrix-pr.outputs.matrix) }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up devcontainer cli
run: npm install -g @devcontainers/cli
- name: Test build
Expand All @@ -104,7 +104,7 @@ jobs:
fail-fast: false
matrix: ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Lint Code Base
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- id: set-json
run: |
jsonfile="build/matrix.json"
Expand All @@ -49,7 +49,7 @@ jobs:
fail-fast: false
matrix: ${{fromJson(needs.generate-matrix.outputs.matrix)}}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Clean up
run: |
Expand Down Expand Up @@ -77,14 +77,14 @@ jobs:
image: rocker/tidyverse:latest
steps:
- name: Checkout main
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set as safe for following git commands
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"

- name: Checkout wiki
if: github.event_name != 'pull_request'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: "${{ github.repository }}.wiki"
path: reports
Expand Down

0 comments on commit e928c2b

Please sign in to comment.