Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dependencies #46

Merged
merged 5 commits into from
May 7, 2024
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.4

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build the resharper-annotate Docker image
run: |
docker build ./resharper-annotate --tag ghcr.io/vmelnalksnis/resharper-annotate:v0.3.0
docker push ghcr.io/vmelnalksnis/resharper-annotate:v0.3.0
docker build ./resharper-annotate --tag ghcr.io/vmelnalksnis/resharper-annotate:v0.3.1
docker push ghcr.io/vmelnalksnis/resharper-annotate:v0.3.1
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.4

- name: Setup .NET
uses: actions/setup-dotnet@v3.2.0
uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: 6.0.x

Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ runs:
using: 'composite'
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v3.2.0
uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: ${{ inputs.dotnet-version }}

Expand All @@ -46,7 +46,7 @@ runs:
--properties:Configuration=Release

- name: Annotate with inspections
uses: VMelnalksnis/resharper-inspect-action/resharper-annotate@v0.3.0
uses: VMelnalksnis/resharper-inspect-action/resharper-annotate@v0.3.1
with:
report: report
treat-warnings-as-errors: ${{ inputs.treat-warnings-as-errors }}
27 changes: 15 additions & 12 deletions resharper-annotate/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions resharper-annotate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "resharper-annotate"
version = "0.3.0"
version = "0.3.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
serde = { version = "1.0.164" }
serde_derive = { version = "1.0.164" }
serde = { version = "1.0.200" }
serde_derive = { version = "1.0.200" }
serde-xml-rs = { version = "0.6.0" }
2 changes: 1 addition & 1 deletion resharper-annotate/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ inputs:
required: true
runs:
using: 'docker'
image: 'docker://ghcr.io/vmelnalksnis/resharper-annotate:v0.3.0'
image: 'docker://ghcr.io/vmelnalksnis/resharper-annotate:v0.3.1'
args:
- ${{ inputs.report }}
- ${{ inputs.treat-warnings-as-errors }}
Loading