mirror of
https://github.com/Exp-Intro-to-GitHub-Flow-Cohort-1/series-intro-to-github-flow-dyzulk.git
synced 2026-01-26 21:31:54 +07:00
Bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
4
.github/workflows/0-welcome.yml
vendored
4
.github/workflows/0-welcome.yml
vendored
@@ -24,7 +24,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
- id: get_step
|
||||
run: |
|
||||
echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT
|
||||
@@ -50,7 +50,7 @@ jobs:
|
||||
steps:
|
||||
# We'll need to check out the repository so that we can edit README.md.
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0 # Let's get all the branches.
|
||||
|
||||
|
||||
4
.github/workflows/1-create-a-branch.yml
vendored
4
.github/workflows/1-create-a-branch.yml
vendored
@@ -22,7 +22,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
- id: get_step
|
||||
run: |
|
||||
echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT
|
||||
@@ -52,7 +52,7 @@ jobs:
|
||||
steps:
|
||||
# We'll need to check out the repository so that we can edit the README.
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0 # Let's get all the branches.
|
||||
|
||||
|
||||
4
.github/workflows/2-commit-a-file.yml
vendored
4
.github/workflows/2-commit-a-file.yml
vendored
@@ -24,7 +24,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
- id: get_step
|
||||
run: |
|
||||
echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT
|
||||
@@ -50,7 +50,7 @@ jobs:
|
||||
steps:
|
||||
# We'll need to check out the repository so that we can edit the README.
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0 # Let's get all the branches.
|
||||
|
||||
|
||||
4
.github/workflows/3-open-a-pull-request.yml
vendored
4
.github/workflows/3-open-a-pull-request.yml
vendored
@@ -25,7 +25,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
- id: get_step
|
||||
run: |
|
||||
echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT
|
||||
@@ -53,7 +53,7 @@ jobs:
|
||||
steps:
|
||||
# We'll need to check out the repository so that we can edit the README.
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0 # Let's get all the branches.
|
||||
ref: my-first-branch # Important, as normally `pull_request` event won't grab other branches.
|
||||
|
||||
@@ -24,7 +24,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
- id: get_step
|
||||
run: |
|
||||
echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT
|
||||
@@ -50,7 +50,7 @@ jobs:
|
||||
steps:
|
||||
# We'll need to check out the repository so that we can edit the README.
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0 # Let's get all the branches.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user