Skip to content

Commit

Permalink
ci(version): fix bump actions version (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
bathienle authored Nov 19, 2024
1 parent c5658fe commit 65dd2eb
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,17 @@ on:
pull_request:
branches:
- main-ce
- production

jobs:
lint:
runs-on: ubuntu-latest

steps:
- name: Set up the repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up NodeJS
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ vars.NODE_VERSION }}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:

steps:
- name: Set up the repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up NodeJS
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ vars.NODE_VERSION }}

Expand All @@ -33,7 +33,7 @@ jobs:
tar -czvf ${{ env.DIR_NAME }}.tar.gz ${{ env.DIR_NAME }}
- name: Store the artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.DIR_NAME }}.tar.gz
path: ${{ env.DIR_NAME }}.tar.gz
Expand All @@ -55,7 +55,7 @@ jobs:
- name: Create release
id: release-creation
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
name: ${{ github.ref_name }}
prerelease: ${{ env.prerelease }}
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
name: ${{ env.DIR_NAME }}.tar.gz

- name: Upload release asset
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
name: ${{ env.DIR_NAME }}.tar.gz
release_id: ${{ needs.create-release.outputs.release_id }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and push Docker image
name: Docker

on:
push:
Expand All @@ -11,10 +11,10 @@ jobs:

steps:
- name: Set up the repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up NodeJS
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ vars.NODE_VERSION }}

Expand All @@ -40,16 +40,16 @@ jobs:
type=semver,pattern={{raw}}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
context: .
file: ./docker/Dockerfile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- name: Set up the repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up NodeJS
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ vars.NODE_VERSION }}

Expand Down
1 change: 1 addition & 0 deletions meta-prefixes.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"APERIO": "APERIO.","TIFF": "TIFF.","HAMAMATSU": "HAMAMATSU.","OPENSLIDE": "OPENSLIDE.","EXIF": "EXIF.","LEICA": "LEICA.","JFIF": "JFIF.","FILE": "FILE.","PNG": "PNG.","XMP": "XMP.","VENTANA": "VENTANA."}

0 comments on commit 65dd2eb

Please sign in to comment.