Skip to content

Commit

Permalink
Merge pull request #7 from hahwul/dev
Browse files Browse the repository at this point in the history
Release 1.3.4
  • Loading branch information
hahwul committed Jan 29, 2024
2 parents ba8bc9f + 80c1437 commit 2c3c0ab
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 14 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/docker-ghcr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,19 @@ jobs:
# https://github.com/docker/metadata-action
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
type=raw,value=latest,enable={{is_default_branch}}
# Build and push Docker image with Buildx (don't push on PR)
# https://github.com/docker/build-push-action
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@ac9327eae2b366085ac7f6a2d02df8aa8ead720a
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.2.2
FROM ruby:3.3.0

RUN mkdir /app
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ gem 'colorize'
gem 'concurrent-ruby-edge'
gem 'json'
gem 'nokogiri'
gem 'open-uri'
gem 'open-uri', '>= 0.4.0'
gem 'set'
gem 'sitemap-parser'
gem 'thor'
13 changes: 7 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ GEM
concurrent-ruby (1.1.10)
concurrent-ruby-edge (0.6.0)
concurrent-ruby (~> 1.1.6)
date (3.2.2)
date (3.3.4)
ethon (0.15.0)
ffi (>= 1.15.0)
ffi (1.15.5)
Expand All @@ -14,7 +14,7 @@ GEM
nokogiri (1.13.8)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
open-uri (0.2.0)
open-uri (0.4.1)
stringio
time
uri
Expand All @@ -23,24 +23,25 @@ GEM
sitemap-parser (0.5.6)
nokogiri (~> 1.6)
typhoeus (>= 0.6, < 2.0)
stringio (3.0.2)
stringio (3.1.0)
thor (1.2.1)
time (0.2.0)
time (0.3.0)
date
typhoeus (1.4.0)
ethon (>= 0.9.0)
uri (0.11.0)
uri (0.13.0)

PLATFORMS
arm64-darwin-22
arm64-darwin-23
x86_64-darwin-21

DEPENDENCIES
colorize
concurrent-ruby-edge
json
nokogiri
open-uri
open-uri (>= 0.4.0)
set
sitemap-parser
thor
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ deadfinder sitemap https://www.hahwul.com/sitemap.xml
```yml
steps:
- name: Run DeadFinder
uses: hahwul/deadfinder@1.3.1
uses: hahwul/deadfinder@1.3.4
id: broken-link
with:
command: sitemap
Expand Down
2 changes: 1 addition & 1 deletion github-action/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/hahwul/deadfinder:1.3.3
FROM ghcr.io/hahwul/deadfinder:1.3.4
COPY entrypoint.sh /entrypoint.sh
RUN chmod 755 /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
2 changes: 1 addition & 1 deletion lib/deadfinder/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# frozen_string_literal: true

VERSION = '1.3.3'
VERSION = '1.3.4'
2 changes: 1 addition & 1 deletion ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.2
3.3.0

0 comments on commit 2c3c0ab

Please sign in to comment.