@@ -16,20 +16,18 @@ jobs:
1616
1717 # Configures the filter for which operating system that should be used when selecting runners
1818 runs-on : ubuntu-latest
19-
19+
2020 # Set of commands to run for the build job
2121 steps :
2222 # Checks-out your repository under $GITHUB_WORKSPACE
2323 - name : Clone Repo
24- uses : actions/checkout@v4
24+ uses : actions/checkout@v5
2525
2626 # Set up NodeJS on the build host with caching support to optimize execution
2727 - name : Set up Node.js
28- uses : actions/setup-node@v4
28+ uses : actions/setup-node@v6
2929 with :
3030 node-version : 22
31- cache : npm
32- cache-dependency-path : package-lock.json
3331
3432 # Make sure that all of the version numbers align before publishing
3533 - name : Ensure Synced Versions
@@ -81,20 +79,18 @@ jobs:
8179 attestations : write
8280 contents : read
8381 id-token : write
84-
82+
8583 # Set of commands to run for the build job
8684 steps :
8785 # Checks-out your repository under $GITHUB_WORKSPACE
8886 - name : Clone Repo
89- uses : actions/checkout@v4
87+ uses : actions/checkout@v5
9088
9189 # Set up NodeJS on the build host with caching support to optimize execution
9290 - name : Set up Node.js
93- uses : actions/setup-node@v4
91+ uses : actions/setup-node@v6
9492 with :
9593 node-version : 22
96- cache : npm
97- cache-dependency-path : package-lock.json
9894
9995 # Install all of the dependencies
10096 - name : Install All of the Project Dependencies
@@ -110,13 +106,13 @@ jobs:
110106
111107 # Create an attestation for the compiled package and upload it to the internal system for health tracking
112108 - name : Attest Compiled Package
113- uses : actions/attest-build-provenance@v2
109+ uses : actions/attest-build-provenance@v3
114110 with :
115111 subject-path : package.zip
116112
117113 # Upload compiled zip file so that other execution sessions can use it
118114 - name : Upload Artifact for Deployment Job
119- uses : actions/upload-artifact@v4
115+ uses : actions/upload-artifact@v5
120116 with :
121117 compression-level : 9
122118 if-no-files-found : error
@@ -148,15 +144,15 @@ jobs:
148144 steps :
149145 # Set up NodeJS on the build host with caching support to optimize execution
150146 - name : Set up Node.JS Runtime
151- uses : actions/setup-node@v4
147+ uses : actions/setup-node@v6
152148 with :
153149 node-version : 22
154150 registry-url : https://registry.npmjs.org
155151 scope : shi-corp
156152
157153 # Download the compiled server binary
158154 - name : Download Artifact From Build Job
159- uses : actions/download-artifact@v4
155+ uses : actions/download-artifact@v6
160156 with :
161157 name : ObjectID-Converter
162158
0 commit comments