diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f4bd5d0..11d0280f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: steps: - name: 'Checking out repo code' - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: 'Validate build' run: | diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 4fa0f557..9d31766d 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -34,7 +34,7 @@ jobs: steps: - name: Checkout from PR branch - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.event.pull_request.head.ref }} diff --git a/README.md b/README.md index 718a8a01..7b5970c1 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - uses: azure/sql-action@v2 with: connection-string: ${{ secrets.AZURE_SQL_CONNECTION_STRING }} @@ -64,7 +64,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - uses: azure/login@v1 # Azure login required to add a temporary firewall rule with: creds: ${{ secrets.AZURE_CREDENTIALS }} @@ -84,7 +84,7 @@ jobs: build: runs-on: windows-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - uses: azure/sql-action@v2 with: connection-string: ${{ secrets.AZURE_SQL_CONNECTION_STRING }} @@ -182,7 +182,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - uses: azure/sql-action@v2 with: connection-string: ${{ secrets.AZURE_SQL_CONNECTION_STRING }} @@ -235,7 +235,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - uses: azure/sql-action@v2 with: connection-string: ${{ secrets.AZURE_SQL_CONNECTION_STRING }} diff --git a/action.yml b/action.yml index a8715b29..eae18d45 100644 --- a/action.yml +++ b/action.yml @@ -17,5 +17,5 @@ inputs: description: 'In case of a .sqlproj file, additional arguments that will be applied to dotnet build when building the database project.' required: false runs: - using: 'node12' + using: 'node16' main: 'lib/main.js'