Skip to content

Commit 2c3c0ab

Browse files
authored
Merge pull request #7 from hahwul/dev
Release 1.3.4
2 parents ba8bc9f + 80c1437 commit 2c3c0ab

File tree

8 files changed

+19
-14
lines changed

8 files changed

+19
-14
lines changed

.github/workflows/docker-ghcr.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,19 @@ jobs:
6060
# https://github.com/docker/metadata-action
6161
- name: Extract Docker metadata
6262
id: meta
63-
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
63+
uses: docker/metadata-action@v5
6464
with:
6565
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
66+
tags: |
67+
type=ref,event=branch
68+
type=semver,pattern={{version}}
69+
type=raw,value=latest,enable={{is_default_branch}}
6670
6771
# Build and push Docker image with Buildx (don't push on PR)
6872
# https://github.com/docker/build-push-action
6973
- name: Build and push Docker image
7074
id: build-and-push
71-
uses: docker/build-push-action@ac9327eae2b366085ac7f6a2d02df8aa8ead720a
75+
uses: docker/build-push-action@v5
7276
with:
7377
context: .
7478
push: ${{ github.event_name != 'pull_request' }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.2.2
1+
FROM ruby:3.3.0
22

33
RUN mkdir /app
44
WORKDIR /app

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ gem 'colorize'
44
gem 'concurrent-ruby-edge'
55
gem 'json'
66
gem 'nokogiri'
7-
gem 'open-uri'
7+
gem 'open-uri', '>= 0.4.0'
88
gem 'set'
99
gem 'sitemap-parser'
1010
gem 'thor'

Gemfile.lock

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ GEM
55
concurrent-ruby (1.1.10)
66
concurrent-ruby-edge (0.6.0)
77
concurrent-ruby (~> 1.1.6)
8-
date (3.2.2)
8+
date (3.3.4)
99
ethon (0.15.0)
1010
ffi (>= 1.15.0)
1111
ffi (1.15.5)
@@ -14,7 +14,7 @@ GEM
1414
nokogiri (1.13.8)
1515
mini_portile2 (~> 2.8.0)
1616
racc (~> 1.4)
17-
open-uri (0.2.0)
17+
open-uri (0.4.1)
1818
stringio
1919
time
2020
uri
@@ -23,24 +23,25 @@ GEM
2323
sitemap-parser (0.5.6)
2424
nokogiri (~> 1.6)
2525
typhoeus (>= 0.6, < 2.0)
26-
stringio (3.0.2)
26+
stringio (3.1.0)
2727
thor (1.2.1)
28-
time (0.2.0)
28+
time (0.3.0)
2929
date
3030
typhoeus (1.4.0)
3131
ethon (>= 0.9.0)
32-
uri (0.11.0)
32+
uri (0.13.0)
3333

3434
PLATFORMS
3535
arm64-darwin-22
36+
arm64-darwin-23
3637
x86_64-darwin-21
3738

3839
DEPENDENCIES
3940
colorize
4041
concurrent-ruby-edge
4142
json
4243
nokogiri
43-
open-uri
44+
open-uri (>= 0.4.0)
4445
set
4546
sitemap-parser
4647
thor

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ deadfinder sitemap https://www.hahwul.com/sitemap.xml
2525
```yml
2626
steps:
2727
- name: Run DeadFinder
28-
uses: hahwul/[email protected].1
28+
uses: hahwul/[email protected].4
2929
id: broken-link
3030
with:
3131
command: sitemap

github-action/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/hahwul/deadfinder:1.3.3
1+
FROM ghcr.io/hahwul/deadfinder:1.3.4
22
COPY entrypoint.sh /entrypoint.sh
33
RUN chmod 755 /entrypoint.sh
44
ENTRYPOINT ["/entrypoint.sh"]

lib/deadfinder/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# frozen_string_literal: true
22

3-
VERSION = '1.3.3'
3+
VERSION = '1.3.4'

ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.2
1+
3.3.0

0 commit comments

Comments
 (0)