Skip to content

Commit 0e8339e

Browse files
authored
Merge pull request #2328 from jepler/update-actions
Use a different concurrency group name
2 parents b4ed1b0 + e9ce77f commit 0e8339e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/githubci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
with:
1111
python-version: "3.x"
1212
- name: Checkout Current Repo
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414

1515
- name: check SPDX licensing
1616
run: python ./SPDX.py
@@ -26,8 +26,8 @@ jobs:
2626
- uses: actions/setup-python@v4
2727
with:
2828
python-version: "3.x"
29-
- uses: actions/checkout@v2
30-
- uses: actions/checkout@v2
29+
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v3
3131
with:
3232
repository: adafruit/ci-arduino
3333
path: ci
@@ -56,7 +56,7 @@ jobs:
5656

5757

5858
- name: Upload build artifacts
59-
uses: actions/upload-artifact@v2
59+
uses: actions/upload-artifact@v3
6060
with:
6161
name: ${{ github.event.repository.name }}.${{ github.sha }}
6262
path: |
@@ -98,7 +98,7 @@ jobs:
9898
run: |
9999
pip install --force-reinstall pylint==2.7.1
100100
- name: Checkout Current Repo
101-
uses: actions/checkout@v2
101+
uses: actions/checkout@v3
102102

103103
- name: lint
104104
run: ./pylint_check.sh

.github/workflows/images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
branches: [main]
99

1010
concurrency:
11-
group: folder-images
11+
group: folder-images-concurrency # https://github.com/adafruit/Adafruit_Learning_System_Guides/issues/2327
1212
cancel-in-progress: true
1313

1414
jobs:
@@ -21,7 +21,7 @@ jobs:
2121
GITHUB_CONTEXT: ${{ toJson(github) }}
2222
run: echo "$GITHUB_CONTEXT"
2323

24-
- uses: actions/checkout@v2.2.0
24+
- uses: actions/checkout@v3
2525

2626
- name: Set up Python 3.x
2727
uses: actions/setup-python@v4

0 commit comments

Comments
 (0)