Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/label-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
steps:
# Pull the central label manifest from anaverage-enri/.github
- name: Checkout shared label manifest
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: anaverage-enri/.github
path: .github-config
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/path-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
# Checkout target repository
#
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

#
# Checkout central .github repository
#
- name: Checkout shared label config
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: anaverage-enri/.github
path: .github-config
Expand All @@ -31,7 +31,7 @@ jobs:
# Apply labels
#
- name: Apply path labels
uses: actions/labeler@v5
uses: actions/labeler@v6.1.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
configuration-path: .github-config/path-labels.yml
4 changes: 2 additions & 2 deletions .github/workflows/size-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Label PR size
uses: pascalgn/size-label-action@v0.5.5
uses: pascalgn/size-label-action@v0.5.7
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down