Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/github_actions/super-linter/super…
Browse files Browse the repository at this point in the history
…-linter-7
  • Loading branch information
danielgospodinow authored Nov 29, 2024
2 parents 50db1af + ff9a6fe commit b18664f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ jobs:

- name: Tag Version
id: tag
uses: issue-ops/semver@v1.2.0
uses: issue-ops/semver@v2.0.0
with:
manifest-path: ${{ env.MANIFEST_PATH }}
ref: main
workspace: ${{ github.workspace }}

- name: Create Release
id: release
uses: issue-ops/releaser@v0.1.3
uses: issue-ops/releaser@v2.0.0
with:
tag: v${{ steps.tag.outputs.version }}

Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
# Publish the container image
- name: Publish Container Image
id: publish
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
env:
LABELS: ${{ steps.meta.outputs.labels }}
TAGS: ${{ steps.meta.outputs.tags }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Build the Container
id: build
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
push: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- name: Check Version
id: check-version
uses: issue-ops/semver@v1.2.0
uses: issue-ops/semver@v2.0.0
with:
check-only: true
manifest-path: ${{ env.MANIFEST_PATH }}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22
FROM golang:1.23

ENV PACKAGE_TO_SCAN=$PACKAGE_TO_SCAN

Check warning on line 3 in Dockerfile

View workflow job for this annotation

GitHub Actions / Test Container Image

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$PACKAGE_TO_SCAN' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Expand Down

0 comments on commit b18664f

Please sign in to comment.