Skip to content

Commit

Permalink
Merge pull request #22 from kohlerdominik/upgrade/node-16
Browse files Browse the repository at this point in the history
Upgrade to node16
  • Loading branch information
kohlerdominik authored Nov 9, 2022
2 parents 8b5d904 + 68be90d commit ca43bd0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/make-test-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -17,4 +17,4 @@ jobs:
with:
push: true
context: tests/private-image
tags: ghcr.io/${{ github.repository }}/private-image:latest
tags: ghcr.io/${{ github.repository }}/private-image:latest
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand Down Expand Up @@ -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 }}
Expand All @@ -150,4 +150,4 @@ jobs:
uses: ./
with:
image: ghcr.io/${{ github.repository }}/private-image:latest
run: cat /var/mywork/private-image-test
run: cat /var/mywork/private-image-test
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ inputs:
description: 'Additional run options'

runs:
using: 'node12'
using: 'node16'
main: 'dist/index.js'

0 comments on commit ca43bd0

Please sign in to comment.