Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: bundle exec rspec

- name: Upload coverage report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: coverage-report
Expand All @@ -55,7 +55,7 @@ jobs:
bundler-cache: true

- name: Setup Node.js for OpenAPI lint tooling
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version-file: ".tool-versions"
cache: npm
Expand All @@ -80,7 +80,7 @@ jobs:
- uses: actions/checkout@v6

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version-file: ".tool-versions"
cache: npm
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
run: docker save html2rss/web -o /tmp/html2rss-web-smoke-image.tar

- name: Upload Docker smoke image
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: docker-smoke-image
path: /tmp/html2rss-web-smoke-image.tar
Expand All @@ -146,7 +146,7 @@ jobs:
bundler-cache: true

- name: Download Docker smoke image
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: docker-smoke-image
path: /tmp
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
uses: actions/checkout@v6

- name: Setup Node.js for Docker build
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version-file: ".tool-versions"
cache: npm
Expand All @@ -191,22 +191,22 @@ jobs:
working-directory: frontend

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

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

- name: Get Git commit timestamps
run: echo "TIMESTAMP=$(git log -1 --pretty=%ct)" >> $GITHUB_ENV

- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ${{ env.IMAGE_NAME }}

- name: Log in to DockerHub
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
Expand All @@ -220,7 +220,7 @@ jobs:
${{ runner.os }}-buildx-

- name: Build and push Docker image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
env:
SOURCE_DATE_EPOCH: ${{ env.TIMESTAMP }}
with:
Expand Down
Loading