Skip to content

Commit

Permalink
Fixes from #3
Browse files Browse the repository at this point in the history
  • Loading branch information
heiskr committed May 30, 2023
1 parent 4deb411 commit 0d6bf5e
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 10 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
4 changes: 2 additions & 2 deletions .github/workflows/0-welcome.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- id: get_step
run: echo "::set-output name=current_step::$(cat ./.github/steps/-step.txt)"
run: echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT
outputs:
current_step: ${{ steps.get_step.outputs.current_step }}

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

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/1-copilot-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- id: get_step
run: echo "::set-output name=current_step::$(cat ./.github/steps/-step.txt)"
run: echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT
outputs:
current_step: ${{ steps.get_step.outputs.current_step }}

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

# Verify the learner added the file contents.
- name: Check workflow contents, jobs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/2-skills-javascript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- id: get_step
run: echo "::set-output name=current_step::$(cat ./.github/steps/-step.txt)"
run: echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT
outputs:
current_step: ${{ steps.get_step.outputs.current_step }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/3-copilot-hub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- id: get_step
run: echo "::set-output name=current_step::$(cat ./.github/steps/-step.txt)"
run: echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT
outputs:
current_step: ${{ steps.get_step.outputs.current_step }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/4-copilot-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- id: get_step
run: echo "::set-output name=current_step::$(cat ./.github/steps/-step.txt)"
run: echo "current_step=$(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT
outputs:
current_step: ${{ steps.get_step.outputs.current_step }}

Expand All @@ -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@v2
uses: actions/checkout@v3
with:
fetch-depth: 0 # Let's get all the branches.

Expand Down

0 comments on commit 0d6bf5e

Please sign in to comment.