Skip to content

Commit 7c2eef0

Browse files
committed
Update action versions
1 parent cb40ad6 commit 7c2eef0

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/deleteoldrcpackages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
]
3737
steps:
3838
- name: Delete old versions of ${{ matrix.package }}
39-
uses: actions/delete-package-versions@v4
39+
uses: actions/delete-package-versions@v5
4040
with:
4141
package-name: ${{ matrix.package }}
4242
min-versions-to-keep: 10

.github/workflows/docker-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
has_jobs: ${{ steps.set-matrix.outputs.has_jobs }}
3434
steps:
3535
- id: set-matrix
36-
uses: actions/github-script@v7
36+
uses: actions/github-script@v8
3737
env:
3838
REF_NAME: ${{ github.ref_name }}
3939
with:
@@ -78,14 +78,14 @@ jobs:
7878

7979
steps:
8080
- name: Checkout repository
81-
uses: actions/checkout@v4
81+
uses: actions/checkout@v5
8282
with:
8383
fetch-depth: 0
8484

8585
- name: Check for changes in ${{ matrix.context }}
8686
id: changed
8787
if: github.event_name == 'push' || github.event_name == 'pull_request'
88-
uses: dorny/paths-filter@v2
88+
uses: dorny/paths-filter@v4
8989
with:
9090
filters: |
9191
src:

.github/workflows/maintenancerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
version:
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
with:
3131
token: ${{ secrets.GH_PUSH_TO_GIT }}
3232
fetch-depth: 0

.github/workflows/maintenancereleasepackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
env:
3333
NEEDS_BROWSERSLIST: ${{ contains(fromJSON('["lectureapp", "app"]'), github.event.inputs.package) }}
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v5
3636
with:
3737
token: ${{ secrets.GH_PUSH_TO_GIT }}
3838
- name: Git Config

.github/workflows/npm-publish-github-packages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ jobs:
4141
- name: 'security'
4242
steps:
4343
- name: Checkout code
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5
4545
- name: Setup Node
46-
uses: actions/setup-node@v4
46+
uses: actions/setup-node@v5
4747
with:
4848
node-version: 24
4949
registry-url: https://npm.pkg.github.com/

0 commit comments

Comments
 (0)