Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit 0d6bf5e

Browse files
committed
Fixes from #3
1 parent 4deb411 commit 0d6bf5e

File tree

6 files changed

+16
-10
lines changed

6 files changed

+16
-10
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"

.github/workflows/0-welcome.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Checkout
2424
uses: actions/checkout@v3
2525
- id: get_step
26-
run: echo "::set-output name=current_step::$(cat ./.github/steps/-step.txt)"
26+
run: echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT
2727
outputs:
2828
current_step: ${{ steps.get_step.outputs.current_step }}
2929

@@ -43,7 +43,7 @@ jobs:
4343
steps:
4444
# We'll need to check out the repository so that we can edit the README.
4545
- name: Checkout
46-
uses: actions/checkout@v2
46+
uses: actions/checkout@v3
4747
with:
4848
fetch-depth: 0 # Let's get all the branches.
4949

.github/workflows/1-copilot-extension.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Checkout
3232
uses: actions/checkout@v3
3333
- id: get_step
34-
run: echo "::set-output name=current_step::$(cat ./.github/steps/-step.txt)"
34+
run: echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT
3535
outputs:
3636
current_step: ${{ steps.get_step.outputs.current_step }}
3737

@@ -51,7 +51,7 @@ jobs:
5151
steps:
5252
# We'll need to check out the repository so that we can edit the README.
5353
- name: Checkout
54-
uses: actions/checkout@v2
54+
uses: actions/checkout@v3
5555

5656
# Verify the learner added the file contents.
5757
- name: Check workflow contents, jobs

.github/workflows/2-skills-javascript.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3333
- id: get_step
34-
run: echo "::set-output name=current_step::$(cat ./.github/steps/-step.txt)"
34+
run: echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT
3535
outputs:
3636
current_step: ${{ steps.get_step.outputs.current_step }}
3737

.github/workflows/3-copilot-hub.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3333
- id: get_step
34-
run: echo "::set-output name=current_step::$(cat ./.github/steps/-step.txt)"
34+
run: echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT
3535
outputs:
3636
current_step: ${{ steps.get_step.outputs.current_step }}
3737

.github/workflows/4-copilot-comment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Checkout
3131
uses: actions/checkout@v3
3232
- id: get_step
33-
run: echo "::set-output name=current_step::$(cat ./.github/steps/-step.txt)"
33+
run: echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT
3434
outputs:
3535
current_step: ${{ steps.get_step.outputs.current_step }}
3636

@@ -50,7 +50,7 @@ jobs:
5050
steps:
5151
# We'll need to check out the repository so that we can edit the README.
5252
- name: Checkout
53-
uses: actions/checkout@v2
53+
uses: actions/checkout@v3
5454
with:
5555
fetch-depth: 0 # Let's get all the branches.
5656

0 commit comments

Comments
 (0)