Skip to content

Commit e6baf1f

Browse files
committed
chore(ci): bump all actions to latest versions
- actions/checkout v4 -> v6 - actions/github-script v7 -> v9 - actions/upload-artifact v4 -> v7 - Keyfactor/add-and-commit v9.1.3 -> v9.1.4 Addresses Node.js 20 deprecation warnings from the previous run.
1 parent 918116d commit e6baf1f

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/update-stores.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
4848
- name: Check Open PRs for Existing Branch
4949
id: check-branch
50-
uses: actions/github-script@v7
50+
uses: actions/github-script@v9
5151
with:
5252
script: |
5353
const owner = context.repo.owner;
@@ -79,7 +79,7 @@ jobs:
7979
# If the branch with an open PR already exists, first check out that branch from kfutil
8080
- name: Check out existing repo merge branch
8181
if: env.PR_BRANCH == 'commit'
82-
uses: actions/checkout@v4
82+
uses: actions/checkout@v6
8383
with:
8484
repository: 'keyfactor/kfutil'
8585
sparse-checkout: |
@@ -92,7 +92,7 @@ jobs:
9292
# If the branch does not exist, first check out the main branch from kfutil.
9393
- name: Check out main
9494
if: env.PR_BRANCH == 'create'
95-
uses: actions/checkout@v4
95+
uses: actions/checkout@v6
9696
with:
9797
repository: 'keyfactor/kfutil'
9898
sparse-checkout: |
@@ -109,7 +109,7 @@ jobs:
109109
110110
# Checkout and run the python tool
111111
- name: Check out python merge tool repo
112-
uses: actions/checkout@v4
112+
uses: actions/checkout@v6
113113
with:
114114
repository: 'keyfactor/integration-tools'
115115
path: './tools/'
@@ -124,7 +124,7 @@ jobs:
124124

125125
- name: Save Store Types JSON Artifact
126126
if: success()
127-
uses: actions/upload-artifact@v4
127+
uses: actions/upload-artifact@v7
128128
with:
129129
name: store-types
130130
path: |
@@ -133,14 +133,14 @@ jobs:
133133
134134
- name: Save Invalid Store Types JSON Artifact
135135
if: success()
136-
uses: actions/upload-artifact@v4
136+
uses: actions/upload-artifact@v7
137137
with:
138138
name: invalid-repos
139139
path: ./tools/store-type-merge/invalid_repos.json
140140

141141
- name: Save logs directory
142142
if: success()
143-
uses: actions/upload-artifact@v4
143+
uses: actions/upload-artifact@v7
144144
with:
145145
name: logs
146146
path: ./tools/store-type-merge/log
@@ -170,7 +170,7 @@ jobs:
170170
# Both steps will contain a check for the UPDATE_FILE variable before running
171171
- name: Add and Commit to newly created branch
172172
if: ${{ env.UPDATE_FILE == 'T' && env.PR_BRANCH == 'create' }}
173-
uses: Keyfactor/add-and-commit@v9.1.3
173+
uses: Keyfactor/add-and-commit@v9.1.4
174174
env:
175175
GITHUB_TOKEN: ${{ secrets.SDK_SYNC_PAT }}
176176
with:
@@ -185,7 +185,7 @@ jobs:
185185

186186
- name: Add and Commit to existing branch
187187
if: ${{ env.UPDATE_FILE == 'T' && env.PR_BRANCH == 'commit' }}
188-
uses: Keyfactor/add-and-commit@v9.1.3
188+
uses: Keyfactor/add-and-commit@v9.1.4
189189
env:
190190
GITHUB_TOKEN: ${{ secrets.SDK_SYNC_PAT }}
191191
with:
@@ -213,7 +213,7 @@ jobs:
213213
const response = await github.rest.pulls.create({
214214
owner,
215215
repo,
216-
title: 'New Pull Request - ${{env.KFUTIL_ARG}}:${{env.TARGET_REPO_BRANCH}}',
216+
title: 'Store Types Update - ${{env.KFUTIL_ARG}}:${{env.TARGET_REPO_BRANCH}}',
217217
head: newBranch,
218218
base: baseBranch,
219219
body: 'The cert store update from ${{env.KFUTIL_ARG}}:${{env.TARGET_REPO_BRANCH}} needs to be verified and merged if correct.',

0 commit comments

Comments
 (0)