Skip to content

Commit 1fdb80a

Browse files
authored
Merge branch 'main' into main
2 parents 004dbf9 + 0d56c39 commit 1fdb80a

24 files changed

+1785
-30
lines changed

.github/workflows/blueskyfeedbot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Generate cache key
16-
uses: actions/github-script@v6
16+
uses: actions/github-script@v8
1717
id: generate-key
1818
with:
1919
script: |
2020
core.setOutput('cache-key', new Date().valueOf())
2121
- name: Retrieve cache
22-
uses: actions/cache@v3
22+
uses: actions/cache@v4
2323
with:
2424
path: ${{ github.workspace }}/blueskyfeedbot
2525
key: feed-cache-${{ steps.generate-key.outputs.cache-key }}

.github/workflows/ci-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
reviewdog_version: latest
3636

3737
# BEGIN Dependencies
38-
- uses: actions/setup-python@v5
38+
- uses: actions/setup-python@v6
3939
with:
4040
python-version: '3.11'
4141
architecture: 'x64'

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
persist-credentials: false
2121

2222
# BEGIN Dependencies
23-
- uses: actions/setup-python@v5
23+
- uses: actions/setup-python@v6
2424
with:
2525
python-version: '3.11'
2626
architecture: 'x64'

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
persist-credentials: false
3232

3333
# BEGIN Dependencies
34-
- uses: actions/setup-python@v5
34+
- uses: actions/setup-python@v6
3535
with:
3636
python-version: '3.11'
3737
architecture: 'x64'

.github/workflows/git-gat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
fetch-depth: 1
2323
persist-credentials: false
24-
- uses: actions/setup-python@v5
24+
- uses: actions/setup-python@v6
2525
with:
2626
python-version: '3.11'
2727
architecture: 'x64'

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
pull-requests: write
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/labeler@v4
12+
- uses: actions/labeler@v6
1313
with:
1414
repo-token: "${{ secrets.GITHUB_TOKEN }}"
1515
sync-labels: true

.github/workflows/monthly-release-backfill.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
persist-credentials: false
3333

3434
# BEGIN Dependencies
35-
- uses: actions/setup-python@v5
35+
- uses: actions/setup-python@v6
3636
with:
3737
python-version: '3.11'
3838
architecture: 'x64'

.github/workflows/monthly-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
persist-credentials: false
3232

3333
# BEGIN Dependencies
34-
- uses: actions/setup-python@v5
34+
- uses: actions/setup-python@v6
3535
with:
3636
python-version: '3.11'
3737
architecture: 'x64'

.github/workflows/optimize-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
with:
3535
githubToken: ${{ secrets.GITHUB_TOKEN }}
3636
# For non-Pull Requests, run in compressOnly mode and we'll PR after.
37-
compressOnly: ${{ github.event_name != 'pull_request' }}
37+
##compressOnly: ${{ github.event_name != 'pull_request' }}
3838
minPctChange: '10'
3939
- name: Create Pull Request
4040
# If it's not a Pull Request then commit any changes as a new PR.

.github/workflows/reviewdog-comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
reviewdog_version: latest
2020

2121
- name: 'Download artifact'
22-
uses: actions/github-script@v7
22+
uses: actions/github-script@v8
2323
with:
2424
script: |
2525
let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({

0 commit comments

Comments
 (0)