Skip to content

Commit

Permalink
update actions dep
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandredevely authored Jan 31, 2024
1 parent acbbb60 commit bc24f38
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
commit_hash: ${{ steps.set-matrix.outputs.commit_hash }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Use Node.js
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
matrix:
path: ${{ fromJson(needs.generateInputDockerFile.outputs.matrix) }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}

Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
tags: |
abcdesktopio/${{ env.image }}:${{ env.imagetag }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
env:
image: ${{ matrix.path }}
imagetag: ${{ github.ref_name || 'main' }}
Expand All @@ -128,7 +128,7 @@ jobs:
env:
image: ${{ matrix.path }}
imagetag: ${{ github.ref_name || 'main' }}
uses: peter-evans/repository-dispatch@v2
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.TOKEN_DISPATCH }}
repository: abcdesktopio/images
Expand All @@ -143,30 +143,30 @@ jobs:
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}

- name: remove previous Dockerfile
run: rm *.d

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: artifact-dockerfiles

- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18.x"

- name: Install dependencies
run: npm install

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: generate MarkDown files
run: node make-docs.js --release "${{ github.head_ref }}"
Expand All @@ -178,7 +178,7 @@ jobs:
if-no-files-found: error # 'error' or 'ignore' are also available, defaults to `warn`

- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v2
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.TOKEN_DISPATCH }}
repository: abcdesktopio/docs
Expand Down

0 comments on commit bc24f38

Please sign in to comment.