Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump actions/checkout from 2.3.5 to 3.2.0
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.5 to 3.2.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2.3.5...v3.2.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>
dependabot[bot] authored Jan 2, 2023
1 parent e8aad3e commit adabc24
Showing 13 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ jobs:
git config --system core.autocrlf false
- name: checkout
uses: actions/checkout@v2.3.5
uses: actions/checkout@v3.2.0

- name: set up Ruby
uses: ruby/setup-ruby@v1
@@ -55,7 +55,7 @@ jobs:
runs-on: ubuntu-latest
needs: tests
steps:
- uses: actions/checkout@v2.3.5
- uses: actions/checkout@v3.2.0
- uses: fastlane/github-actions/fastlane-env-reminder@latest
with:
repo-token: "${{ secrets.BOT_GITHUB_TOKEN }}"
@@ -65,7 +65,7 @@ jobs:
runs-on: ubuntu-latest
needs: tests
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.2.0
with:
fetch-depth: 2
- name: Fetch all history for all tags and branches
2 changes: 1 addition & 1 deletion .github/workflows/build_changelog.yml
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
name: Changelog Validate
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3.2.0
- name: "Build Changelog"
uses: mikepenz/release-changelog-builder-action@v3
with:
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ jobs:
echo "::set-output name=TMPDIR::$env:RUNNER_TEMP"
git config --system core.autocrlf false
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v3.2.0
- name: set up Ruby
uses: ruby/setup-ruby@v1
with:
2 changes: 1 addition & 1 deletion .github/workflows/codacy-analysis.yml
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ jobs:
steps:
# Checkout the repository to the GitHub Actions runner
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v3.2.0

# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
- name: Run Codacy Analysis CLI
2 changes: 1 addition & 1 deletion .github/workflows/commit-lint.yml
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3.2.0
- uses: ahmadnassri/action-commit-lint@v2.0.5
with:
config: .github/linters/.commit-lint.yml
2 changes: 1 addition & 1 deletion .github/workflows/devskim-analysis.yml
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ jobs:
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.2.0

- name: Run DevSkim scanner
uses: microsoft/DevSkim-Action@v1
2 changes: 1 addition & 1 deletion .github/workflows/issues.yml
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ jobs:
name: fastlane env reminder
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3.2.0
- uses: fastlane/github-actions/fastlane-env-reminder@latest
with:
repo-token: "${{ secrets.BOT_GITHUB_TOKEN }}"
2 changes: 1 addition & 1 deletion .github/workflows/mega-linter.yml
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ jobs:
steps:
# Git Checkout
- name: "🧰 Checkout"
uses: actions/checkout@v3
uses: actions/checkout@v3.2.0
with:
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
fetch-depth: 0
2 changes: 1 addition & 1 deletion .github/workflows/misspell-fixer.yml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ jobs:
misspell-fixer:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3.2.0
- uses: sobolevn/misspell-fixer-action@master
- name: "Check diff"
run: git diff --exit-code ${{ github.sha }}
2 changes: 1 addition & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "🧰 Checkout"
uses: actions/checkout@v3
uses: actions/checkout@v3.2.0
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
2 changes: 1 addition & 1 deletion .github/workflows/reuse-check.yml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "🧰 Checkout"
uses: actions/checkout@v3
uses: actions/checkout@v3.2.0
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
name: A job to lint Markdown files
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3.2.0
- name: write-good action step
id: write-good
uses: tomwhross/write-good-action@v1.5
2 changes: 1 addition & 1 deletion .github/workflows/write_good.yml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
name: A job to lint Markdown files
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3.2.0
- name: write-good action step
id: write-good
uses: tomwhross/write-good-action@v1.5

0 comments on commit adabc24

Please sign in to comment.