From 9ed06695889c482c9a634d63581dd73bf6db23a3 Mon Sep 17 00:00:00 2001
From: Daniel Ramos <dan@daramos.com>
Date: Thu, 31 Mar 2022 21:15:42 +0000
Subject: [PATCH] Add SAML 1.1 test to integration test

---
 .github/workflows/update-deps.yml |   17 +++++++++--------
 1 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/update-deps.yml b/.github/workflows/update-deps.yml
index 704a7ae..6a0399b 100644
--- a/.github/workflows/update-deps.yml
+++ b/.github/workflows/update-deps.yml
@@ -1,6 +1,7 @@
 on:
   schedule:
     - cron:  '41 8 * * *'
+  workflow_dispatch:
 
 name: Update dependencies
 
@@ -11,13 +12,14 @@
     steps:
       - id: checkout
         name: Checkout code
-        uses: actions/checkout@v2
+        uses: actions/checkout@v3
 
       - id: java
         name: Install Java and Maven
-        uses: actions/setup-java@v1
+        uses: actions/setup-java@v2
         with:
-          java-version: 8
+          distribution: zulu
+          java-version: 11
 
       - id: update_keycloak
         name: Update Keycloak
@@ -77,21 +79,20 @@
         name: Set access token
         if: steps.check_branch.outputs.commit == ''
         run: |
-          echo -n "::set-env name=GH_TOKEN::"
           if [ '${{ secrets.GH_TOKEN }}' != '' ]; then
-            echo '${{ secrets.GH_TOKEN }}'
+            echo 'GH_TOKEN=${{ secrets.GH_TOKEN }}' >> $GITHUB_ENV
           else
-            echo '${{ secrets.GITHUB_TOKEN }}'
+            echo 'GH_TOKEN=${{ secrets.GITHUB_TOKEN }}' >> $GITHUB_ENV
           fi
 
       - id: create_pull_request_default_token
         name: Create pull request
         if: steps.check_branch.outputs.commit == ''
-        uses: actions/github-script@0.9.0
+        uses: actions/github-script@v6
         with:
           github-token: ${{ env.GH_TOKEN }}
           script: |
-            github.pulls.create({
+            github.rest.pulls.create({
               owner: context.repo.owner,
               repo: context.repo.repo,
               head: 'feature/keycloak-update-${{ steps.vars.outputs.keycloakVersion }}',

--
Gitblit v1.9.1