1 Commits

Author SHA1 Message Date
dependabot[bot]
be79485b32 Bump actions/cache from 3.0.10 to 3.2.6
Bumps [actions/cache](https://github.com/actions/cache) from 3.0.10 to 3.2.6.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v3.0.10...v3.2.6)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-02-27 07:57:22 +00:00
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ jobs:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- uses: actions/cache@v3.0.10
- uses: actions/cache@v3.2.6
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

View File

@@ -10,7 +10,7 @@ RUN go build -o bin/app cmd/app/main.go
# Final stage that will be pushed.
FROM debian:buster-slim
FROM node:19.7.0-buster-slim as node
FROM node:18.10.0-buster-slim as node
WORKDIR /root