Skip to content

Commit

Permalink
Bump actions/checkout from 3.6.0 to 4.0.0
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.6.0 to 4.0.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3.6.0...v4.0.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and kdeldycke committed Sep 4, 2023
1 parent 113cf1b commit c6de536
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 31 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/autofix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
black_params: ${{ steps.project-metadata.outputs.black_params }}
ruff_params: ${{ steps.project-metadata.outputs.ruff_params }}
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
with:
# Checkout pull request HEAD commit to ignore actions/checkout's merge commit. Fallback to push SHA.
ref: ${{ github.event.pull_request.head.sha || github.sha }}
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
if: needs.project-metadata.outputs.python_files || needs.project-metadata.outputs.doc_files
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
- uses: actions/setup-python@v4.7.0
with:
python-version: "3.11"
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
name: Format Markdown
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
- uses: actions/setup-python@v4.7.0
with:
python-version: "3.11"
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
name: Format JSON
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
- name: Install jsonlint
run: |
sudo npm install --global jsonlint
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
outputs:
exists: ${{ steps.detection.outputs.exists }}
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
- id: detection
# Bare-called reused workflow are not fed with defaults, so force it here.
run: |
Expand All @@ -245,7 +245,7 @@ jobs:
if: needs.check-gitignore.outputs.exists
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
- name: Install git-extras
run: |
sudo apt update
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- minor
- major
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
- uses: actions/setup-python@v4.7.0
with:
python-version: "3.11"
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
# keep the release date in sync.
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
- uses: actions/setup-python@v4.7.0
with:
python-version: "3.11"
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: Fix typos
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
# XXX Use unreleased dev version while we wait for a new one to be cut. See:
# https://github.com/sobolevn/misspell-fixer-action/issues/15
- uses: sobolevn/misspell-fixer-action@8842a5615f83fed75e8a87015e9300a54d049961
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
name: Optimize images
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
# XXX Waiting for a recent release for image-actions so we'll get rid of some warning annotations like
# "Unexpected input(s) 'compressOnly'". See: https://github.com/calibreapp/image-actions/issues/128
- uses: calibreapp/image-actions@1.1.0
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
outputs:
exists: ${{ steps.detection.outputs.exists }}
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
- id: detection
run: |
echo "exists=$( [[ -f './.mailmap' ]] && echo 'true' )" >> "$GITHUB_OUTPUT"
Expand All @@ -105,7 +105,7 @@ jobs:
if: needs.check-mailmap.outputs.exists
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
with:
# Fetch all history to extract all contributors.
fetch-depth: 0
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
is_sphinx: ${{ steps.project-metadata.outputs.is_sphinx }}
active_autodoc: ${{ steps.project-metadata.outputs.active_autodoc }}
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
with:
# Checkout pull request HEAD commit to ignore actions/checkout's merge commit. Fallback to push SHA.
ref: ${{ github.event.pull_request.head.sha || github.sha }}
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
if: fromJSON(needs.project-metadata.outputs.is_poetry_project)
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
- uses: actions/setup-python@v4.7.0
with:
python-version: "3.11"
Expand Down Expand Up @@ -230,7 +230,7 @@ jobs:
&& fromJSON(needs.project-metadata.outputs.active_autodoc)
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
- uses: actions/setup-python@v4.7.0
with:
python-version: "3.11"
Expand Down Expand Up @@ -272,7 +272,7 @@ jobs:
if: fromJSON(needs.project-metadata.outputs.is_poetry_project) && fromJSON(needs.project-metadata.outputs.is_sphinx)
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
- uses: actions/setup-python@v4.7.0
with:
python-version: "3.11"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeller-file-based.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
&& github.actor != 'dependabot-preview[bot]'
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
- name: Download default rules
run: >
curl -fsSL --output ./.github/labeller-file-based.yaml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: Sync labels
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
- name: Sync labels
uses: julb/action-manage-label@1.0.1
env:
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
ruff_params: ${{ steps.project-metadata.outputs.ruff_params }}
mypy_params: ${{ steps.project-metadata.outputs.mypy_params }}
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
with:
# Checkout pull request HEAD commit to ignore actions/checkout's merge commit. Fallback to push SHA.
ref: ${{ github.event.pull_request.head.sha || github.sha }}
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
if: github.head_ref != 'prepare-release' && needs.project-metadata.outputs.python_files
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
- uses: actions/setup-python@v4.7.0
with:
python-version: "3.11"
Expand All @@ -79,7 +79,7 @@ jobs:
if: github.head_ref != 'prepare-release' && needs.project-metadata.outputs.python_files
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
- uses: actions/setup-python@v4.7.0
with:
python-version: "3.11"
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
if: github.head_ref != 'prepare-release'
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
- uses: actions/setup-python@v4.7.0
with:
python-version: "3.11"
Expand All @@ -130,7 +130,7 @@ jobs:
lint-zsh:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
- name: Install Zsh
run: |
sudo apt update
Expand All @@ -142,7 +142,7 @@ jobs:
lint-github-action:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
- name: Install actionlint
id: install_actionlint
run: |
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
# action blindly creates issues ad-nauseam. See: https://github.com/peter-evans/create-issue-from-file/issues/298 .
# This was also discussed at: https://github.com/lycheeverse/lychee-action/issues/74#issuecomment-1587089689
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
- uses: lycheeverse/lychee-action@v1.8.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -287,7 +287,7 @@ jobs:
if: startsWith(github.event.repository.name, 'awesome-')
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
with:
# Fetch all history to please linter's age checks.
fetch-depth: 0
Expand All @@ -298,7 +298,7 @@ jobs:
check-secrets:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
with:
fetch-depth: 0
- uses: gitleaks/gitleaks-action@v2.3.2
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
is_poetry_project: ${{ steps.project-metadata.outputs.is_poetry_project }}
package_name: ${{ steps.project-metadata.outputs.package_name }}
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
with:
# Checkout pull request HEAD commit to ignore actions/checkout's merge commit. Fallback to push SHA.
ref: ${{ github.event.pull_request.head.sha || github.sha }}
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
matrix: ${{ fromJSON(needs.project-metadata.outputs.new_commits_matrix) }}
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
with:
ref: ${{ matrix.commit }}
- uses: actions/setup-python@v4.7.0
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
matrix: ${{ fromJSON(needs.project-metadata.outputs.nuitka_matrix) }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
with:
ref: ${{ matrix.commit }}
- uses: actions/setup-python@v4.7.0
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
outputs:
tagged_version: ${{ steps.get_version.outputs.current_version }}
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
with:
ref: ${{ matrix.commit }}
- uses: actions/setup-python@v4.7.0
Expand Down

0 comments on commit c6de536

Please sign in to comment.