Skip to content

Commit 4e89e25

Browse files
committed
Use a different concurrency group name
.. the other one is haunted. Closes #2327. Also upgrades actions/checkout to one that doesn't warn ``` Warning: The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ ```
1 parent afeff35 commit 4e89e25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.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)