diff --git a/.github/workflows/make-test-image.yml b/.github/workflows/make-test-image.yml index 9998eb9..f6389dc 100644 --- a/.github/workflows/make-test-image.yml +++ b/.github/workflows/make-test-image.yml @@ -7,8 +7,8 @@ jobs: name: Build and Push runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: docker/login-action@v1 + - uses: actions/checkout@v3 + - uses: docker/login-action@v2 with: registry: ghcr.io username: ${{ github.actor }} @@ -17,4 +17,4 @@ jobs: with: push: true context: tests/private-image - tags: ghcr.io/${{ github.repository }}/private-image:latest \ No newline at end of file + tags: ghcr.io/${{ github.repository }}/private-image:latest diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4575e5b..6c45cfb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: name: Test code format runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: | npm install - run: | @@ -23,7 +23,7 @@ jobs: nginx: image: nginxdemos/hello:plain-text steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Copy test.sh to executable path run: | mkdir -p ~/.local/bin @@ -140,7 +140,7 @@ jobs: run: test.sh equal "${{ steps.test-options-input.outputs.test-var }}" "bar" - name: Authorize docker for private image - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: ghcr.io username: ${{ github.actor }} @@ -150,4 +150,4 @@ jobs: uses: ./ with: image: ghcr.io/${{ github.repository }}/private-image:latest - run: cat /var/mywork/private-image-test \ No newline at end of file + run: cat /var/mywork/private-image-test diff --git a/action.yml b/action.yml index 95a1472..f8e0688 100644 --- a/action.yml +++ b/action.yml @@ -33,5 +33,5 @@ inputs: description: 'Additional run options' runs: - using: 'node12' + using: 'node16' main: 'dist/index.js'