Skip to content
Closed
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
6 changes: 3 additions & 3 deletions .github/workflows/metaschema-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
outputs:
skip: ${{ steps.ci-skip-step.outputs.ci-skip }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- id: ci-skip-step
Expand All @@ -44,14 +44,14 @@ jobs:
runs-on: ubuntu-18.04
steps:
# use this for main repo master builds
- uses: actions/checkout@v2
- uses: actions/checkout@v3
if: ${{ github.repository == env.HOME_REPO && github.ref == format('refs/heads/{0}',env.HOME_BRANCH) }}
with:
path: ${{ env.OSCAL_HOME }}
submodules: recursive
token: ${{ secrets.COMMIT_TOKEN }}
# use this for pull request builds where checkout uses the builtin token
- uses: actions/checkout@v2
- uses: actions/checkout@v3
if: ${{ github.repository != env.HOME_REPO || github.ref != format('refs/heads/{0}',env.HOME_BRANCH) }}
with:
path: ${{ env.OSCAL_HOME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-18.04
steps:
# use this for main repo master builds
- uses: actions/checkout@v2
- uses: actions/checkout@v3
if: github.repository == env.HOME_REPO
with:
path: ${{ env.OSCAL_HOME }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validate-repo-markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
outputs:
skip: ${{ steps.ci-skip-step.outputs.ci-skip }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- id: ci-skip-step
Expand All @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-18.04
steps:
# use this for pulls where checkout is anonymous
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
path: ${{ env.OSCAL_HOME }}
submodules: recursive
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/website-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
steps:
# use this for main repo builds on branches
- name: Checkout working branch or Tag
uses: actions/checkout@v2
uses: actions/checkout@v3
if: ${{ github.repository == env.HOME_REPO && github.event_name == 'push' }}
with:
path: ${{ env.OSCAL_HOME }}
Expand All @@ -64,7 +64,7 @@ jobs:
working-directory: ${{ env.OSCAL_HOME }}
# use this for pull request builds where checkout uses the builtin token
- name: Checkout PR
uses: actions/checkout@v2
uses: actions/checkout@v3
if: ${{ github.repository != env.HOME_REPO || github.event_name != 'push' }}
with:
path: ${{ env.OSCAL_HOME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/website-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
# use this for main repo builds on branches
- name: Checkout main branch
uses: actions/checkout@v2
uses: actions/checkout@v3
if: ${{ github.repository == env.HOME_REPO && github.ref == format('refs/heads/{0}',env.HOME_BRANCH) }}
with:
path: ${{ env.OSCAL_HOME }}
Expand Down