fix: Update some actions to run on Node 16 instead of Node 12.
This commit is contained in:
parent
98e6ef216a
commit
5990535987
2 changed files with 6 additions and 6 deletions
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
token: ${{ secrets.API_GITHUB_TOKEN }}
|
||||
|
||||
|
@ -28,7 +28,7 @@ jobs:
|
|||
alpine
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
uses: docker/setup-qemu-action@v2
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
|
|
8
.github/workflows/test.yml
vendored
8
.github/workflows/test.yml
vendored
|
@ -13,23 +13,23 @@ jobs:
|
|||
steps:
|
||||
- name: Checkout with token
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
token: ${{ secrets.API_GITHUB_TOKEN }}
|
||||
|
||||
- name: Checkout without token
|
||||
if: github.event_name == 'pull_request'
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
uses: docker/setup-buildx-action@v2
|
||||
|
||||
- name: Docker Build Test
|
||||
run: docker buildx build --load --tag test:test --file ./Dockerfile ./
|
||||
|
||||
- name: Version
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: cycjimmy/semantic-release-action@v2.5.3
|
||||
uses: cycjimmy/semantic-release-action@v3
|
||||
with:
|
||||
semantic_version: 17.4
|
||||
env:
|
||||
|
|
Loading…
Reference in a new issue