Skip to content

Commit

Permalink
Update actions/checkout action to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed Jun 13, 2022
1 parent a1444b9 commit 63c5f34
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/audit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
sudo apt update
sudo apt install g++-10 libgbm1 graphicsmagick fonts-liberation2
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: ${{ matrix.branch }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clean-ghpages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
timeout-minutes: 5

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
with:
ref: gh-pages
- name: Clean ghpages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
if: env.HAS_SECRETS == 'HAS_SECRETS'

- name: Initialize CodeQL
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ jobs:
run: echo "::set-output name=sha::$(jq -r .pull_request.head.sha < ${GITHUB_EVENT_PATH})"
if: env.HAS_SECRETS == 'HAS_SECRETS' && github.event_name != 'push'

- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
if: github.event_name != 'pull_request_target'
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ steps.sha.outputs.sha }}
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
run: echo ${GITHUB_EVENT} | python3 -m json.tool
env:
GITHUB_EVENT: ${{ toJson(github) }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: gh-pages
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request-title.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
if: github.actor != 'dependabot-preview[bot]'

# Do spell on pull request title
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- run: echo "${HOME}/.local/bin" >> ${GITHUB_PATH}
- run: python3 -m pip install --user codespell
Expand Down

0 comments on commit 63c5f34

Please sign in to comment.