From 90d081a713cfb3f1d83134d94b128fb9f25f1fc6 Mon Sep 17 00:00:00 2001 From: Aleksander Fidelus <63016446+FidelusAleksander@users.noreply.github.com> Date: Wed, 15 Oct 2025 11:09:32 +0200 Subject: [PATCH 1/3] Upgrade GitHub Actions to latest versions Updated GitHub Actions to use the latest versions of checkout, Python, and Node.js setup actions. --- docs/1-copilot-coding-agent.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/1-copilot-coding-agent.md b/docs/1-copilot-coding-agent.md index 49814017..c30eb7be 100644 --- a/docs/1-copilot-coding-agent.md +++ b/docs/1-copilot-coding-agent.md @@ -54,11 +54,11 @@ jobs: contents: read steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Backend setup - Python - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v6 with: python-version: "3.13" cache: "pip" @@ -68,7 +68,7 @@ jobs: # Frontend setup - Node.js - name: Set up Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: "22" cache: "npm" From 6fd2f90c503aca916ddada60f9e675d1159ab355 Mon Sep 17 00:00:00 2001 From: Aleksander Fidelus <63016446+FidelusAleksander@users.noreply.github.com> Date: Wed, 15 Oct 2025 11:11:53 +0200 Subject: [PATCH 2/3] Upgrade GitHub Actions to latest versions Updated GitHub Actions to use the latest versions of checkout, setup-python, and setup-node actions. --- .github/workflows/copilot-setup-steps.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 00417886..4dd31a2e 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -12,11 +12,11 @@ jobs: contents: read steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Backend setup - Python - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v6 with: python-version: "3.13" cache: "pip" @@ -26,7 +26,7 @@ jobs: # Frontend setup - Node.js - name: Set up Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: "22" cache: "npm" From ca367f4c32ab49a9eb78321b6b559d12143bccbb Mon Sep 17 00:00:00 2001 From: Aleksander Fidelus <63016446+FidelusAleksander@users.noreply.github.com> Date: Wed, 15 Oct 2025 11:14:18 +0200 Subject: [PATCH 3/3] Update Copilot assignment indication in documentation --- docs/1-copilot-coding-agent.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1-copilot-coding-agent.md b/docs/1-copilot-coding-agent.md index c30eb7be..743d3603 100644 --- a/docs/1-copilot-coding-agent.md +++ b/docs/1-copilot-coding-agent.md @@ -105,7 +105,7 @@ While every developer and organization understands the importance of documentati ![Assigning Copilot to an issue](images/ex4-issue-assign.png) -10. Click somewhere else on the page to close the assignment window. Shortly after, you should see a set of 👀 on the first comment in the issue, indicating Copilot is on the job! +10. Click somewhere else on the page to close the assignment window. Shortly after, you should see a set of 👀 on the issue description, indicating Copilot is on the job! ![Copilot uses the eyes emoji to indicate it's working on the issue](images/ex4-issue-eyes.png)