@@ -11,7 +11,7 @@ This custom action needs to be added at step level in a job to register package
1111## Step 2: Configure Secrets in your GitHub Ogranization or GitHub repository
1212On GitHub, go in your organization settings or repository settings, click on the _ Secrets > Actions_ and create a new secret.
1313
14- For token based authentication which is available from @v2 .0 .0 , create secrets called
14+ For token based authentication which is available from @v3 .1 .0 , create secrets called
1515- ` SN_INSTANCE_URL ` your ServiceNow instance URL, for example ** https://test.service-now.com **
1616- ` SN_ORCHESTRATION_TOOL_ID ` only the ** sys_id** is required for the GitHub tool created in your ServiceNow instance
1717- ` SN_DEVOPS_INTEGRATION_TOKEN ` required for token based authentication
@@ -23,14 +23,14 @@ For basic authentication , create secrets called
2323- ` SN_DEVOPS_PASSWORD `
2424
2525## Step 3: Configure the GitHub Action if need to adapt for your needs or workflows
26- ## For Token based Authentication which is available from @v2 .0 .0 , at ServiceNow instance
26+ ## For Token based Authentication which is available from @v3 .1 .0 , at ServiceNow instance
2727``` yaml
2828registerpackage :
2929 name : Register Package
3030 runs-on : ubuntu-latest
3131 steps :
3232 - name : ServiceNow Register Package
33- uses : ServiceNow/servicenow-devops-register-package@v2.0 .0
33+ uses : ServiceNow/servicenow-devops-register-package@v3.1 .0
3434 with :
3535 devops-integration-token : ${{ secrets.SN_DEVOPS_INTEGRATION_TOKEN }}
3636 instance-url : ${{ secrets.SN_INSTANCE_URL }}
@@ -47,7 +47,7 @@ registerpackage:
4747 runs-on : ubuntu-latest
4848 steps :
4949 - name : ServiceNow Register Package
50- uses : ServiceNow/servicenow-devops-register-package@v2.0 .0
50+ uses : ServiceNow/servicenow-devops-register-package@v3.1 .0
5151 with :
5252 devops-integration-user-name : ${{ secrets.SN_DEVOPS_USER }}
5353 devops-integration-user-passwd : ${{ secrets.SN_DEVOPS_PASSWORD }}
0 commit comments