Skip to content

Commit

Permalink
Merge pull request #1299 from TeoZosa/dependabot/github_actions/actio…
Browse files Browse the repository at this point in the history
…ns/checkout-4
  • Loading branch information
TeoZosa authored Feb 18, 2024
2 parents 9cd8560 + 150fb87 commit 0760ead
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto-merge-dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ahmadnassri/action-dependabot-auto-merge@v2.6
with:
target: minor
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: "ubuntu-latest"
steps:
- name: Check out the repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4.6.1
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
runs-on: "ubuntu-latest"
steps:
- name: Check out the repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4.6.1
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
name: Semgrep
steps:
- name: Check out the repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Disable Git LFS
run: |
Expand All @@ -133,7 +133,7 @@ jobs:
runs-on: "ubuntu-latest"
steps:
- name: Check out the repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4.6.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run Labeler
uses: crazy-max/ghaction-github-labeler@v5.0.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_log4brains.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false # required by JamesIves/github-pages-deploy-action
fetch-depth: 0 # required by Log4brains to work correctly (needs the whole Git history)
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
dev-version: ${{ steps.bump-dev-version.outputs.version }}
steps:
- name: Check out the repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 2

Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:

steps:
- name: Check out the repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Publish the release notes
uses: release-drafter/release-drafter@v5.23.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reset-instance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:

steps:
- name: Check out ${{ env.COOKIECUTTER_META_PROJECT }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: ${{ env.COOKIECUTTER_META_PROJECT }}

- name: Check out ${{ env.COOKIECUTTER_PROJECT_INSTANCE }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ env.PROJECT_INSTANCE_REPO }}
path: ${{ env.COOKIECUTTER_PROJECT_INSTANCE }}
Expand Down

0 comments on commit 0760ead

Please sign in to comment.